iphone-dimensions 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +89 -0
- package/data/iphones.csv +44 -0
- package/data/iphones.json +1198 -0
- package/dist/data.js +1199 -0
- package/dist/index.cjs +1260 -0
- package/dist/index.js +62 -0
- package/index.d.ts +54 -0
- package/package.json +52 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Nav Patel (iphonesize.com)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# iphone-dimensions
|
|
2
|
+
|
|
3
|
+
Apple's published dimensions for every iPhone since the iPhone 7, as JSON, CSV and an npm package. Height, width, depth, weight, display size, resolution and pixel density, with the Apple page each row was checked against.
|
|
4
|
+
|
|
5
|
+
This is the data behind [iphonesize.com](https://iphonesize.com), which draws any of these phones next to each other at true scale in 3D. The full table is also a plain web page at [iphonesize.com/data](https://iphonesize.com/data).
|
|
6
|
+
|
|
7
|
+
| Phone | Height | Width | Depth | Weight | Display |
|
|
8
|
+
| --- | --- | --- | --- | --- | --- |
|
|
9
|
+
| iPhone Duo (closed) | 117.8 mm | 84.1 mm | 11.3 mm | 254 g | 5.4 in |
|
|
10
|
+
| iPhone Duo (open) | 117.8 mm | 164.6 mm | 5.2 mm | 254 g | 7.6 in |
|
|
11
|
+
| iPhone 18 Pro Max | 163.4 mm | 78 mm | 8.75 mm | 249 g | 6.9 in |
|
|
12
|
+
| iPhone 18 Pro | 150 mm | 71.9 mm | 8.75 mm | 211 g | 6.3 in |
|
|
13
|
+
| iPhone Air | 156.2 mm | 74.7 mm | 5.64 mm | 165 g | 6.5 in |
|
|
14
|
+
| iPhone 16 | 147.6 mm | 71.6 mm | 7.8 mm | 170 g | 6.1 in |
|
|
15
|
+
| iPhone 13 mini | 131.5 mm | 64.2 mm | 7.65 mm | 141 g | 5.4 in |
|
|
16
|
+
| iPhone SE (3rd generation) | 138.4 mm | 67.3 mm | 7.3 mm | 144 g | 4.7 in |
|
|
17
|
+
| iPhone 7 | 138.3 mm | 67.1 mm | 7.1 mm | 138 g | 4.7 in |
|
|
18
|
+
|
|
19
|
+
The folding iPhone Duo has two rows, one closed and one open. They share a `product_id`.
|
|
20
|
+
|
|
21
|
+
## Get the data
|
|
22
|
+
|
|
23
|
+
Straight from the site, with open CORS:
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
https://iphonesize.com/data/iphones.json
|
|
27
|
+
https://iphonesize.com/data/iphones.csv
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
From npm:
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
npm install iphone-dimensions
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```js
|
|
37
|
+
import { phones, getPhone, findPhones, getProduct } from 'iphone-dimensions';
|
|
38
|
+
|
|
39
|
+
getPhone('iphone-15-pro');
|
|
40
|
+
// { name: 'iPhone 15 Pro', height_mm: 146.6, width_mm: 70.6, depth_mm: 8.25, weight_g: 187, ppi: 460, ... }
|
|
41
|
+
|
|
42
|
+
findPhones('17 air'); // finds "iPhone Air", which many people call the 17 Air
|
|
43
|
+
getProduct('iphone-duo'); // both Duo rows, closed first
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Works with `import` and `require`, in Node 18 or later, and in bundlers and browsers. No dependencies. The raw files are exported too: `iphone-dimensions/data/iphones.json` and `iphone-dimensions/data/iphones.csv`.
|
|
47
|
+
|
|
48
|
+
## Fields
|
|
49
|
+
|
|
50
|
+
| Field | Meaning |
|
|
51
|
+
| --- | --- |
|
|
52
|
+
| `id` | Stable slug for the row |
|
|
53
|
+
| `product_id` | Same as `id`, except the Duo's two rows share one |
|
|
54
|
+
| `state` | `closed` or `open` for the Duo, `null` for every other phone |
|
|
55
|
+
| `name` | Apple's own marketing name |
|
|
56
|
+
| `also_known_as` | Other names people use, such as "iPhone 17 Air" for the iPhone Air |
|
|
57
|
+
| `family` | The generation the phone belongs to |
|
|
58
|
+
| `announced`, `released` | ISO dates, from Apple Newsroom. `released` is first availability |
|
|
59
|
+
| `height_mm`, `width_mm`, `depth_mm`, `weight_g` | As Apple publishes them |
|
|
60
|
+
| `height_in`, `width_in`, `depth_in`, `weight_oz` | Calculated from the metric values, 2 decimals |
|
|
61
|
+
| `display_in` | Apple's marketed display diagonal |
|
|
62
|
+
| `resolution_px`, `ppi` | Pixels, and Apple's stated pixel density |
|
|
63
|
+
| `url` | The phone's page on iphonesize.com |
|
|
64
|
+
| `source_url` | The Apple tech-specs page the measurements were checked against |
|
|
65
|
+
| `dates_source_url` | The Apple Newsroom page the dates were checked against |
|
|
66
|
+
|
|
67
|
+
Rows follow the site's lineup order. The top-level `verified` field is the date the measurements were last checked, and `notes` repeats the caveats below in machine-readable form.
|
|
68
|
+
|
|
69
|
+
## Where the numbers come from
|
|
70
|
+
|
|
71
|
+
The metric measurements, display size, resolution and pixel density are the values Apple publishes on its tech-specs pages at apple.com and support.apple.com. The dates come from Apple Newsroom. Each row links to both.
|
|
72
|
+
|
|
73
|
+
Three things are ours, not Apple's. The `id` slugs are ours. The inch and ounce values are calculated from Apple's metric figures, so they can differ from Apple's own rounded imperial numbers by 0.01. And `ppi` is Apple's stated figure, which can differ by a few pixels per inch from what you get by dividing the resolution by the marketed diagonal, because the marketed diagonal is rounded.
|
|
74
|
+
|
|
75
|
+
Depth is the body only. Apple's consumer tech-specs pages do not list how far the camera protrudes, and this dataset leaves out anything measured or estimated.
|
|
76
|
+
|
|
77
|
+
**Do not use this to make cases or accessories.** It has no tolerances, button positions, port locations or camera keep-outs. Apple publishes [dimensional drawings](https://developer.apple.com/accessories/dimensional-drawings/) for that.
|
|
78
|
+
|
|
79
|
+
## Corrections and updates
|
|
80
|
+
|
|
81
|
+
The files in `data/` and `dist/` are generated. `data/` is copied from the iphonesize.com build with `npm run sync`, which validates both files before replacing them as a pair, and `dist/` is built from `data/`. Please do not edit either by hand in a pull request. If a number is wrong, open an issue with a link to the Apple page and it gets fixed at the source.
|
|
82
|
+
|
|
83
|
+
Versions follow semver: a patch is a corrected fact or a docs change, a minor adds phones or optional fields, and a major removes or renames a field or changes what one means. New iPhones are added once Apple's spec page is up and checked.
|
|
84
|
+
|
|
85
|
+
## Licence
|
|
86
|
+
|
|
87
|
+
The code is MIT licensed. The data is a table of facts Apple publishes, and you are free to use it for anything. This licence cannot grant rights that belong to Apple, and nothing here is Apple's text or imagery. If you publish something built on it, a link back to [iphonesize.com](https://iphonesize.com) is appreciated.
|
|
88
|
+
|
|
89
|
+
Not affiliated with Apple. iPhone is a trademark of Apple Inc.
|
package/data/iphones.csv
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
id,product_id,state,name,also_known_as,family,announced,released,height_mm,width_mm,depth_mm,weight_g,height_in,width_in,depth_in,weight_oz,display_in,resolution_width_px,resolution_height_px,ppi,url,source_url,dates_source_url
|
|
2
|
+
iphone-duo,iphone-duo,closed,iPhone Duo,iPhone Duo (closed),iPhone Duo,2026-09-09,2026-10-23,117.8,84.1,11.3,254,4.64,3.31,0.44,8.96,5.4,1398,2034,460,https://iphonesize.com/iphone-duo,https://www.apple.com/iphone-duo/specs/,https://www.apple.com/newsroom/2026/09/apple-unveils-iphone-duo/
|
|
3
|
+
iphone-duo-unfolded,iphone-duo,open,iPhone Duo,iPhone Duo (open),iPhone Duo,2026-09-09,2026-10-23,117.8,164.6,5.2,254,4.64,6.48,0.2,8.96,7.6,1878,2670,430,https://iphonesize.com/iphone-duo?duo=unfolded,https://www.apple.com/iphone-duo/specs/,https://www.apple.com/newsroom/2026/09/apple-unveils-iphone-duo/
|
|
4
|
+
iphone-18-pro-max,iphone-18-pro-max,,iPhone 18 Pro Max,,iPhone 18,2026-09-09,2026-09-18,163.4,78,8.75,249,6.43,3.07,0.34,8.78,6.9,1320,2868,460,https://iphonesize.com/iphone-18-pro-max,https://www.apple.com/iphone-18-pro/specs/,https://www.apple.com/newsroom/2026/09/apple-debuts-iphone-18-pro-and-iphone-18-pro-max/
|
|
5
|
+
iphone-18-pro,iphone-18-pro,,iPhone 18 Pro,,iPhone 18,2026-09-09,2026-09-18,150,71.9,8.75,211,5.91,2.83,0.34,7.44,6.3,1206,2622,460,https://iphonesize.com/iphone-18-pro,https://www.apple.com/iphone-18-pro/specs/,https://www.apple.com/newsroom/2026/09/apple-debuts-iphone-18-pro-and-iphone-18-pro-max/
|
|
6
|
+
iphone-17-pro-max,iphone-17-pro-max,,iPhone 17 Pro Max,,iPhone 17,2025-09-09,2025-09-19,163.4,78,8.75,233,6.43,3.07,0.34,8.22,6.9,1320,2868,460,https://iphonesize.com/iphone-17-pro-max,https://support.apple.com/en-us/125091,https://www.apple.com/newsroom/2025/09/apple-unveils-iphone-17-pro-and-iphone-17-pro-max/
|
|
7
|
+
iphone-17-pro,iphone-17-pro,,iPhone 17 Pro,,iPhone 17,2025-09-09,2025-09-19,150,71.9,8.75,206,5.91,2.83,0.34,7.27,6.3,1206,2622,460,https://iphonesize.com/iphone-17-pro,https://support.apple.com/en-us/125090,https://www.apple.com/newsroom/2025/09/apple-unveils-iphone-17-pro-and-iphone-17-pro-max/
|
|
8
|
+
iphone-17-air,iphone-17-air,,iPhone Air,iPhone 17 Air,iPhone 17,2025-09-09,2025-09-19,156.2,74.7,5.64,165,6.15,2.94,0.22,5.82,6.5,1260,2736,460,https://iphonesize.com/iphone-17-air,https://support.apple.com/en-us/125092,https://www.apple.com/newsroom/2025/09/introducing-iphone-air-a-powerful-new-iphone-with-a-breakthrough-design/
|
|
9
|
+
iphone-17,iphone-17,,iPhone 17,,iPhone 17,2025-09-09,2025-09-19,149.6,71.5,7.95,177,5.89,2.81,0.31,6.24,6.3,1206,2622,460,https://iphonesize.com/iphone-17,https://support.apple.com/en-us/125089,https://www.apple.com/newsroom/2025/09/apple-debuts-iphone-17/
|
|
10
|
+
iphone-17e,iphone-17e,,iPhone 17e,,iPhone 17,2026-03-02,2026-03-11,146.7,71.5,7.8,169,5.78,2.81,0.31,5.96,6.1,1170,2532,460,https://iphonesize.com/iphone-17e,https://support.apple.com/en-us/126470,https://www.apple.com/newsroom/2026/03/apple-introduces-iphone-17e/
|
|
11
|
+
iphone-16-pro-max,iphone-16-pro-max,,iPhone 16 Pro Max,,iPhone 16,2024-09-09,2024-09-20,163,77.6,8.25,227,6.42,3.06,0.32,8.01,6.9,1320,2868,460,https://iphonesize.com/iphone-16-pro-max,https://support.apple.com/en-us/121032,https://www.apple.com/newsroom/2024/09/apple-debuts-iphone-16-pro-and-iphone-16-pro-max/
|
|
12
|
+
iphone-16-pro,iphone-16-pro,,iPhone 16 Pro,,iPhone 16,2024-09-09,2024-09-20,149.6,71.5,8.25,199,5.89,2.81,0.32,7.02,6.3,1206,2622,460,https://iphonesize.com/iphone-16-pro,https://support.apple.com/en-us/121031,https://www.apple.com/newsroom/2024/09/apple-debuts-iphone-16-pro-and-iphone-16-pro-max/
|
|
13
|
+
iphone-16-plus,iphone-16-plus,,iPhone 16 Plus,,iPhone 16,2024-09-09,2024-09-20,160.9,77.8,7.8,199,6.33,3.06,0.31,7.02,6.7,1290,2796,460,https://iphonesize.com/iphone-16-plus,https://support.apple.com/en-us/121030,https://www.apple.com/newsroom/2024/09/apple-introduces-iphone-16-and-iphone-16-plus/
|
|
14
|
+
iphone-16,iphone-16,,iPhone 16,,iPhone 16,2024-09-09,2024-09-20,147.6,71.6,7.8,170,5.81,2.82,0.31,6,6.1,1179,2556,460,https://iphonesize.com/iphone-16,https://support.apple.com/en-us/121029,https://www.apple.com/newsroom/2024/09/apple-introduces-iphone-16-and-iphone-16-plus/
|
|
15
|
+
iphone-16e,iphone-16e,,iPhone 16e,,iPhone 16,2025-02-19,2025-02-28,146.7,71.5,7.8,167,5.78,2.81,0.31,5.89,6.1,1170,2532,460,https://iphonesize.com/iphone-16e,https://support.apple.com/en-us/122208,https://www.apple.com/newsroom/2025/02/apple-debuts-iphone-16e-a-powerful-new-member-of-the-iphone-16-family/
|
|
16
|
+
iphone-15-pro-max,iphone-15-pro-max,,iPhone 15 Pro Max,,iPhone 15,2023-09-12,2023-09-22,159.9,76.7,8.25,221,6.3,3.02,0.32,7.8,6.7,1290,2796,460,https://iphonesize.com/iphone-15-pro-max,https://support.apple.com/en-us/111828,https://www.apple.com/newsroom/2023/09/apple-unveils-iphone-15-pro-and-iphone-15-pro-max/
|
|
17
|
+
iphone-15-pro,iphone-15-pro,,iPhone 15 Pro,,iPhone 15,2023-09-12,2023-09-22,146.6,70.6,8.25,187,5.77,2.78,0.32,6.6,6.1,1179,2556,460,https://iphonesize.com/iphone-15-pro,https://support.apple.com/en-us/111829,https://www.apple.com/newsroom/2023/09/apple-unveils-iphone-15-pro-and-iphone-15-pro-max/
|
|
18
|
+
iphone-15-plus,iphone-15-plus,,iPhone 15 Plus,,iPhone 15,2023-09-12,2023-09-22,160.9,77.8,7.8,201,6.33,3.06,0.31,7.09,6.7,1290,2796,460,https://iphonesize.com/iphone-15-plus,https://support.apple.com/en-us/111830,https://www.apple.com/newsroom/2023/09/apple-debuts-iphone-15-and-iphone-15-plus/
|
|
19
|
+
iphone-15,iphone-15,,iPhone 15,,iPhone 15,2023-09-12,2023-09-22,147.6,71.6,7.8,171,5.81,2.82,0.31,6.03,6.1,1179,2556,460,https://iphonesize.com/iphone-15,https://support.apple.com/en-us/111831,https://www.apple.com/newsroom/2023/09/apple-debuts-iphone-15-and-iphone-15-plus/
|
|
20
|
+
iphone-14-pro-max,iphone-14-pro-max,,iPhone 14 Pro Max,,iPhone 14,2022-09-07,2022-09-16,160.7,77.6,7.85,240,6.33,3.06,0.31,8.47,6.7,1290,2796,460,https://iphonesize.com/iphone-14-pro-max,https://support.apple.com/en-us/111846,https://www.apple.com/newsroom/2022/09/apple-debuts-iphone-14-pro-and-iphone-14-pro-max/
|
|
21
|
+
iphone-14-pro,iphone-14-pro,,iPhone 14 Pro,,iPhone 14,2022-09-07,2022-09-16,147.5,71.5,7.85,206,5.81,2.81,0.31,7.27,6.1,1179,2556,460,https://iphonesize.com/iphone-14-pro,https://support.apple.com/en-us/111849,https://www.apple.com/newsroom/2022/09/apple-debuts-iphone-14-pro-and-iphone-14-pro-max/
|
|
22
|
+
iphone-14-plus,iphone-14-plus,,iPhone 14 Plus,,iPhone 14,2022-09-07,2022-10-07,160.8,78.1,7.8,203,6.33,3.07,0.31,7.16,6.7,1284,2778,458,https://iphonesize.com/iphone-14-plus,https://support.apple.com/en-us/111854,https://www.apple.com/newsroom/2022/09/apple-introduces-iphone-14-and-iphone-14-plus/
|
|
23
|
+
iphone-14,iphone-14,,iPhone 14,,iPhone 14,2022-09-07,2022-09-16,146.7,71.5,7.8,172,5.78,2.81,0.31,6.07,6.1,1170,2532,460,https://iphonesize.com/iphone-14,https://support.apple.com/en-us/111850,https://www.apple.com/newsroom/2022/09/apple-introduces-iphone-14-and-iphone-14-plus/
|
|
24
|
+
iphone-13-pro-max,iphone-13-pro-max,,iPhone 13 Pro Max,,iPhone 13,2021-09-14,2021-09-24,160.8,78.1,7.65,240,6.33,3.07,0.3,8.47,6.7,1284,2778,458,https://iphonesize.com/iphone-13-pro-max,https://support.apple.com/en-us/111870,https://www.apple.com/newsroom/2021/09/apple-unveils-iphone-13-pro-and-iphone-13-pro-max-more-pro-than-ever-before/
|
|
25
|
+
iphone-13-pro,iphone-13-pro,,iPhone 13 Pro,,iPhone 13,2021-09-14,2021-09-24,146.7,71.5,7.65,204,5.78,2.81,0.3,7.2,6.1,1170,2532,460,https://iphonesize.com/iphone-13-pro,https://support.apple.com/en-us/111871,https://www.apple.com/newsroom/2021/09/apple-unveils-iphone-13-pro-and-iphone-13-pro-max-more-pro-than-ever-before/
|
|
26
|
+
iphone-13-mini,iphone-13-mini,,iPhone 13 mini,,iPhone 13,2021-09-14,2021-09-24,131.5,64.2,7.65,141,5.18,2.53,0.3,4.97,5.4,1080,2340,476,https://iphonesize.com/iphone-13-mini,https://support.apple.com/en-us/111873,https://www.apple.com/newsroom/2021/09/apple-introduces-iphone-13-and-iphone-13-mini/
|
|
27
|
+
iphone-13,iphone-13,,iPhone 13,,iPhone 13,2021-09-14,2021-09-24,146.7,71.5,7.65,174,5.78,2.81,0.3,6.14,6.1,1170,2532,460,https://iphonesize.com/iphone-13,https://support.apple.com/en-us/111872,https://www.apple.com/newsroom/2021/09/apple-introduces-iphone-13-and-iphone-13-mini/
|
|
28
|
+
iphone-se-3rd,iphone-se-3rd,,iPhone SE (3rd generation),iPhone SE (3rd gen),iPhone SE,2022-03-08,2022-03-18,138.4,67.3,7.3,144,5.45,2.65,0.29,5.08,4.7,750,1334,326,https://iphonesize.com/iphone-se-3rd,https://support.apple.com/en-us/111866,https://www.apple.com/newsroom/2022/03/apple-announces-the-new-iphone-se-a-powerful-smartphone-in-an-iconic-design/
|
|
29
|
+
iphone-12-pro-max,iphone-12-pro-max,,iPhone 12 Pro Max,,iPhone 12,2020-10-13,2020-11-13,160.8,78.1,7.4,228,6.33,3.07,0.29,8.04,6.7,1284,2778,458,https://iphonesize.com/iphone-12-pro-max,https://support.apple.com/en-us/111874,https://www.apple.com/newsroom/2020/10/apple-introduces-iphone-12-pro-and-iphone-12-pro-max-with-5g/
|
|
30
|
+
iphone-12-pro,iphone-12-pro,,iPhone 12 Pro,,iPhone 12,2020-10-13,2020-10-23,146.7,71.5,7.4,189,5.78,2.81,0.29,6.67,6.1,1170,2532,460,https://iphonesize.com/iphone-12-pro,https://support.apple.com/en-us/111875,https://www.apple.com/newsroom/2020/10/apple-introduces-iphone-12-pro-and-iphone-12-pro-max-with-5g/
|
|
31
|
+
iphone-12-mini,iphone-12-mini,,iPhone 12 mini,,iPhone 12,2020-10-13,2020-11-13,131.5,64.2,7.4,135,5.18,2.53,0.29,4.76,5.4,1080,2340,476,https://iphonesize.com/iphone-12-mini,https://support.apple.com/en-us/111877,https://www.apple.com/newsroom/2020/10/apple-announces-iphone-12-and-iphone-12-mini-a-new-era-for-iphone-with-5g/
|
|
32
|
+
iphone-12,iphone-12,,iPhone 12,,iPhone 12,2020-10-13,2020-10-23,146.7,71.5,7.4,164,5.78,2.81,0.29,5.78,6.1,1170,2532,460,https://iphonesize.com/iphone-12,https://support.apple.com/en-us/111876,https://www.apple.com/newsroom/2020/10/apple-announces-iphone-12-and-iphone-12-mini-a-new-era-for-iphone-with-5g/
|
|
33
|
+
iphone-11-pro-max,iphone-11-pro-max,,iPhone 11 Pro Max,,iPhone 11,2019-09-10,2019-09-20,158,77.8,8.1,226,6.22,3.06,0.32,7.97,6.5,1242,2688,458,https://iphonesize.com/iphone-11-pro-max,https://support.apple.com/en-us/111878,https://www.apple.com/newsroom/2019/09/iphone-11-pro-and-iphone-11-pro-max-the-most-powerful-and-advanced-smartphones/
|
|
34
|
+
iphone-11-pro,iphone-11-pro,,iPhone 11 Pro,,iPhone 11,2019-09-10,2019-09-20,144,71.4,8.1,188,5.67,2.81,0.32,6.63,5.8,1125,2436,458,https://iphonesize.com/iphone-11-pro,https://support.apple.com/en-us/111879,https://www.apple.com/newsroom/2019/09/iphone-11-pro-and-iphone-11-pro-max-the-most-powerful-and-advanced-smartphones/
|
|
35
|
+
iphone-11,iphone-11,,iPhone 11,,iPhone 11,2019-09-10,2019-09-20,150.9,75.7,8.3,194,5.94,2.98,0.33,6.84,6.1,828,1792,326,https://iphonesize.com/iphone-11,https://support.apple.com/en-us/111865,https://www.apple.com/newsroom/2019/09/apple-introduces-dual-camera-iphone-11/
|
|
36
|
+
iphone-se-2nd,iphone-se-2nd,,iPhone SE (2nd generation),iPhone SE (2nd gen),iPhone SE,2020-04-15,2020-04-24,138.4,67.3,7.3,148,5.45,2.65,0.29,5.22,4.7,750,1334,326,https://iphonesize.com/iphone-se-2nd,https://support.apple.com/en-us/111882,https://www.apple.com/newsroom/2020/04/iphone-se-a-powerful-new-smartphone-in-a-popular-design/
|
|
37
|
+
iphone-xs-max,iphone-xs-max,,iPhone XS Max,,iPhone X,2018-09-12,2018-09-21,157.5,77.4,7.7,208,6.2,3.05,0.3,7.34,6.5,1242,2688,458,https://iphonesize.com/iphone-xs-max,https://support.apple.com/en-us/111880,https://www.apple.com/newsroom/2018/09/iphone-xs-and-iphone-xs-max-bring-the-best-and-biggest-displays-to-iphone/
|
|
38
|
+
iphone-xs,iphone-xs,,iPhone XS,,iPhone X,2018-09-12,2018-09-21,143.6,70.9,7.7,177,5.65,2.79,0.3,6.24,5.8,1125,2436,458,https://iphonesize.com/iphone-xs,https://support.apple.com/en-us/111881,https://www.apple.com/newsroom/2018/09/iphone-xs-and-iphone-xs-max-bring-the-best-and-biggest-displays-to-iphone/
|
|
39
|
+
iphone-xr,iphone-xr,,iPhone XR,,iPhone X,2018-09-12,2018-10-26,150.9,75.7,8.3,194,5.94,2.98,0.33,6.84,6.1,828,1792,326,https://iphonesize.com/iphone-xr,https://support.apple.com/en-us/111868,https://www.apple.com/newsroom/2018/09/apple-introduces-iphone-xr/
|
|
40
|
+
iphone-x,iphone-x,,iPhone X,,iPhone X,2017-09-12,2017-11-03,143.6,70.9,7.7,174,5.65,2.79,0.3,6.14,5.8,1125,2436,458,https://iphonesize.com/iphone-x,https://support.apple.com/en-us/111864,https://www.apple.com/newsroom/2017/09/the-future-is-here-iphone-x/
|
|
41
|
+
iphone-8-plus,iphone-8-plus,,iPhone 8 Plus,,iPhone 8,2017-09-12,2017-09-22,158.4,78.1,7.5,202,6.24,3.07,0.3,7.13,5.5,1080,1920,401,https://iphonesize.com/iphone-8-plus,https://support.apple.com/en-us/111950,https://www.apple.com/newsroom/2017/09/iphone-8-and-iphone-8-plus-a-new-generation-of-iphone/
|
|
42
|
+
iphone-8,iphone-8,,iPhone 8,,iPhone 8,2017-09-12,2017-09-22,138.4,67.3,7.3,148,5.45,2.65,0.29,5.22,4.7,750,1334,326,https://iphonesize.com/iphone-8,https://support.apple.com/en-us/111976,https://www.apple.com/newsroom/2017/09/iphone-8-and-iphone-8-plus-a-new-generation-of-iphone/
|
|
43
|
+
iphone-7-plus,iphone-7-plus,,iPhone 7 Plus,,iPhone 7,2016-09-07,2016-09-16,158.2,77.9,7.3,188,6.23,3.07,0.29,6.63,5.5,1080,1920,401,https://iphonesize.com/iphone-7-plus,https://support.apple.com/en-us/111953,https://www.apple.com/newsroom/2016/09/apple-introduces-iphone-7-iphone-7-plus/
|
|
44
|
+
iphone-7,iphone-7,,iPhone 7,,iPhone 7,2016-09-07,2016-09-16,138.3,67.1,7.1,138,5.44,2.64,0.28,4.87,4.7,750,1334,326,https://iphonesize.com/iphone-7,https://support.apple.com/en-us/111943,https://www.apple.com/newsroom/2016/09/apple-introduces-iphone-7-iphone-7-plus/
|