Repository: madhusudhankonda/elasticsearch-in-action Branch: main Commit: f1bc43b26a9b Files: 43 Total size: 1.5 MB Directory structure: gitextract_3za_vw0a/ ├── .gitignore ├── LICENSE ├── README.md ├── appendices/ │ └── Appendix D: ├── code/ │ ├── java/ │ │ └── Encoding.java │ └── python/ │ └── encode.py ├── datasets/ │ ├── books-kibana-dataset.txt │ ├── books.txt │ ├── bulk_mobile_phones_data.json │ ├── coffee_sales.txt │ ├── covid-26march2021.txt │ ├── london_restaurants.txt │ ├── mobile_phones_data_bulk.json │ ├── movie_bulk_data.json │ ├── movies2.json │ ├── products.txt │ ├── products2.txt │ ├── products_mapping.txt │ ├── restaurants.txt │ ├── three-books-kibana.txt │ ├── top-movies-kibana.txt │ ├── tv_sales.txt │ └── vector-search-sample.json ├── docker/ │ ├── 7.15.1_es_kibana.yml │ ├── elasticsearch-docker-8-1-2.yml │ ├── elasticsearch-docker-8-6-2.yml │ ├── one_node_es.yml │ └── one_node_kibana.yml └── kibana_scripts/ ├── appendix_ingest_pipelines.txt ├── ch02_getting_started.txt ├── ch04_mapping.txt ├── ch05_working_with_documents.txt ├── ch06_indexing_operations.txt ├── ch07_text_analysis.txt ├── ch08_search_basics.txt ├── ch09_term_level_queries.txt ├── ch10_full_text_queries.txt ├── ch11_compound_queries.txt ├── ch12_advanced_queries.txt ├── ch13_aggregations.txt ├── ch13_aggregations_index.txt ├── ch14_administration.txt └── ch_15_performance_and_trouble_shooting.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Compiled class file *.class # Log file *.log # BlueJ files *.ctxt # Mobile Tools for Java (J2ME) .mtj.tmp/ # Package Files # *.jar *.war *.nar *.ear *.zip *.tar.gz *.rar # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # Give me a star if you love this repo! image # elasticsearch-in-action [Elasticsearch in Action (second edition) Book](https://www.manning.com/books/elasticsearch-in-action-second-edition?utm_source=mkonda&utm_medium=affiliate&utm_campaign=book_konda_elasticsearch_7_23_21&a_aid=mkonda&a_bid=edbc50d4) The [book's accompanying wiki pages](https://github.com/madhusudhankonda/elasticsearch-in-action/wiki) explains the code examples Here's the TOC 1. Overview 2. [Getting Started](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/babeea237dcc77f1d74f734e750347420e64ddc3/kibana_scripts/ch02_getting_started.txt) 3. [Architecture](https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Ch-3:-Architecture) 4. [Mapping](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch04_mapping.txt) 5. [Working with Documents](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch05_working_with_documents.txt) 6. [Indexing Operations](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch06_indexing_operations.txt) 7. [Text Analysis](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch07_text_analysis.txt) 8. [Search Basics](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch08_search_basics.txt) 9. [Term Level Queries](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch09_term_level_queries.txt) 10. [Full Text Queries](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch10_full_text_queries.txt) 11. [Compound Queries](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch11_compound_queries.txt) 12. [Advanced Queries](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch12_advanced_queries.txt) 13. [Aggregations](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch13_aggregations.txt) 14. [Administration](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch14_administration.txt) 15. [Performance and Troubleshooting](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/ch_15_performance_and_trouble_shooting.txt) 16. [Appendix A: Installing and configuring Elasticsearch and Kibana](https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Appendix-A:-Installation) 17. [Appendix B: Ingest Pipelines](https://github.com/madhusudhankonda/elasticsearch-in-action/blob/561c45d7991e8a1766a98ba1a58b0f0d836fc1fd/kibana_scripts/appendix_ingest_pipelines.txt) ## Disabling XPack Security for 8.x By default, 8.x version of Elasticsearch comes with security enabled. For simplicity and not getting the security in our way, we can disable the feature > :warning: **PLEASE DO NOT disable security in PRODUCTION** Edit config/elasticsearch.yml to add the following property at the end of the file: ```xpack.security.enabled: false``` ================================================ FILE: appendices/Appendix D: ================================================ Appenndix D goes here ================================================ FILE: code/java/Encoding.java ================================================ package com.chocolateminds.encoding; import java.util.Base64; /** * An utility class to encode a text as base64 */ public class Encoding { String secretMessage = "Sunday Lunch at Konda's"; Base64.Encoder encoder = Base64.getEncoder(); Base64.Decoder decoder = Base64.getDecoder(); /** * Encoding a piece of string * @return */ private String encode(){ String encoded = Base64.getEncoder().encodeToString(secretMessage.getBytes()); return encoded; } public static void main(String[] args) { Encoding encoding = new Encoding(); System.out.println(encoding.encode()); } } ================================================ FILE: code/python/encode.py ================================================ # A Pyton utility program to encode and decode strings to Base64 import base64 # Encoding the message as bytes secret_message_bytes = "Sunday Lunch at Konda's".encode('utf-8') # Encode the message to base64 secret_message_base64 = base64.b64encode(secret_message_bytes) # Fetch the encoded message secret_message_base64_decode = secret_message_base64.decode('utf-8') # Print the message to the console print(secret_message_base64_decode) # It'll print: U3VuZGF5IEx1bmNoIGF0IEtvbmRhJ3M= ================================================ FILE: datasets/books-kibana-dataset.txt ================================================ POST _bulk {"index":{"_index":"books","_id":"1"}} {"title": "Core Java Volume I – Fundamentals","author": "Cay S. Horstmann","edition": 11, "synopsis": "Java reference book that offers a detailed explanation of various features of Core Java, including exception handling, interfaces, and lambda expressions. Significant highlights of the book include simple language, conciseness, and detailed examples.","amazon_rating": 4.6,"release_date": "2018-08-27","tags": ["Programming Languages, Java Programming"]} {"index":{"_index":"books","_id":"2"}} {"title": "Effective Java","author": "Joshua Bloch", "edition": 3,"synopsis": "A must-have book for every Java programmer and Java aspirant, Effective Java makes up for an excellent complementary read with other Java books or learning material. The book offers 78 best practices to follow for making the code better.", "amazon_rating": 4.7, "release_date": "2017-12-27", "tags": ["Object Oriented Software Design"]} {"index":{"_index":"books","_id":"3"}} {"title": "Java: A Beginner’s Guide", "author": "Herbert Schildt","edition": 8,"synopsis": "One of the most comprehensive books for learning Java. The book offers several hands-on exercises as well as a quiz section at the end of every chapter to let the readers self-evaluate their learning.","amazon_rating": 4.2,"release_date": "2018-11-20","tags": ["Software Design & Engineering", "Internet & Web"]} {"index":{"_index":"books","_id":"4"}} {"title": "Java - The Complete Reference","author": "Herbert Schildt","edition": 11,"synopsis": "Convenient Java reference book examining essential portions of the Java API library, Java. The book is full of discussions and apt examples to better Java learning.","amazon_rating": 4.4,"release_date": "2019-03-19","tags": ["Software Design & Engineering", "Internet & Web", "Computer Programming Language & Tool"]} {"index":{"_index":"books","_id":"5"}} {"title": "Head First Java","author": "Kathy Sierra and Bert Bates","edition":2, "synopsis": "The most important selling points of Head First Java is its simplicity and super-effective real-life analogies that pertain to the Java programming concepts.","amazon_rating": 4.3,"release_date": "2005-02-18","tags": ["IT Certification Exams", "Object-Oriented Software Design","Design Pattern Programming"]} {"index":{"_index":"books","_id":"6"}} {"title": "Java Concurrency in Practice","author": "Brian Goetz with Tim Peierls, Joshua Bloch, Joseph Bowbeer, David Holmes, and Doug Lea","edition": 1,"synopsis": "Java Concurrency in Practice is one of the best Java programming books to develop a rich understanding of concurrency and multithreading.","amazon_rating": 4.3,"release_date": "2006-05-09","tags": ["Computer Science Books", "Programming Languages", "Java Programming"]} {"index":{"_index":"books","_id":"7"}} {"title": "Test-Driven: TDD and Acceptance TDD for Java Developers","author": "Lasse Koskela","edition": 1,"synopsis": "Test-Driven is an excellent book for learning how to write unique automation testing programs. It is a must-have book for those Java developers that prioritize code quality as well as have a knack for writing unit, integration, and automation tests.","amazon_rating": 4.1,"release_date": "2007-10-22","tags": ["Software Architecture", "Software Design & Engineering", "Java Programming"]} {"index":{"_index":"books","_id":"8"}} {"title": "Head First Object-Oriented Analysis Design","author": "Brett D. McLaughlin, Gary Pollice & David West","edition": 1,"synopsis": "Head First is one of the most beautiful finest book series ever written on Java programming language. Another gem in the series is the Head First Object-Oriented Analysis Design.","amazon_rating": 3.9,"release_date": "2014-04-29","tags": ["Introductory & Beginning Programming", "Object-Oriented Software Design", "Java Programming"]} {"index":{"_index":"books","_id":"9"}} {"title": "Java Performance: The Definite Guide","author": "Scott Oaks","edition": 1,"synopsis": "Garbage collection, JVM, and performance tuning are some of the most favorable aspects of the Java programming language. It educates readers about maximizing Java threading and synchronization performance features, improve Java-driven database application performance, tackle performance issues","amazon_rating": 4.1,"release_date": "2014-03-04","tags": ["Design Pattern Programming", "Object-Oriented Software Design", "Computer Programming Language & Tool"]} {"index":{"_index":"books","_id":"10"}} {"title": "Head First Design Patterns", "author": "Eric Freeman & Elisabeth Robson with Kathy Sierra & Bert Bates","edition": 10,"synopsis": "Head First Design Patterns is one of the leading books to build that particular understanding of the Java programming language." ,"amazon_rating": 4.5,"release_date": "2014-03-04","tags": ["Design Pattern Programming", "Object-Oriented Software Design eTextbooks", "Web Development & Design eTextbooks"]} ================================================ FILE: datasets/books.txt ================================================ POST _bulk {"index":{"_index":"books","_id":"1"}} {"title": "Core Java Volume I – Fundamentals","author": "Cay S. Horstmann","edition": 11, "synopsis": "Java reference book that offers a detailed explanation of various features of Core Java, including exception handling, interfaces, and lambda expressions. Significant highlights of the book include simple language, conciseness, and detailed examples.","amazon_rating": 4.6,"release_date": "2018-08-27","tags": ["Programming Languages, Java Programming"]} {"index":{"_index":"books","_id":"2"}} {"title": "Effective Java","author": "Joshua Bloch", "edition": 3,"synopsis": "A must-have book for every Java programmer and Java aspirant, Effective Java makes up for an excellent complementary read with other Java books or learning material. The book offers 78 best practices to follow for making the code better.", "amazon_rating": 4.7, "release_date": "2017-12-27", "tags": ["Object Oriented Software Design"]} {"index":{"_index":"books","_id":"3"}} {"title": "Java: A Beginner’s Guide", "author": "Herbert Schildt","edition": 8,"synopsis": "One of the most comprehensive books for learning Java. The book offers several hands-on exercises as well as a quiz section at the end of every chapter to let the readers self-evaluate their learning.","amazon_rating": 4.2,"release_date": "2018-11-20","tags": ["Software Design & Engineering", "Internet & Web"]} {"index":{"_index":"books","_id":"4"}} {"title": "Java - The Complete Reference","author": "Herbert Schildt","edition": 11,"synopsis": "Convenient Java reference book examining essential portions of the Java API library, Java. The book is full of discussions and apt examples to better Java learning.","amazon_rating": 4.4,"release_date": "2019-03-19","tags": ["Software Design & Engineering", "Internet & Web", "Computer Programming Language & Tool"]} {"index":{"_index":"books","_id":"5"}} {"title": "Head First Java","author": "Kathy Sierra and Bert Bates","edition":2, "synopsis": "The most important selling points of Head First Java is its simplicity and super-effective real-life analogies that pertain to the Java programming concepts.","amazon_rating": 4.3,"release_date": "2005-02-18","tags": ["IT Certification Exams", "Object-Oriented Software Design","Design Pattern Programming"]} {"index":{"_index":"books","_id":"6"}} {"title": "Java Concurrency in Practice","author": "Brian Goetz with Tim Peierls, Joshua Bloch, Joseph Bowbeer, David Holmes, and Doug Lea","edition": 1,"synopsis": "Java Concurrency in Practice is one of the best Java programming books to develop a rich understanding of concurrency and multithreading.","amazon_rating": 4.3,"release_date": "2006-05-09","tags": ["Computer Science Books", "Programming Languages", "Java Programming"]} {"index":{"_index":"books","_id":"7"}} {"title": "Test-Driven: TDD and Acceptance TDD for Java Developers","author": "Lasse Koskela","edition": 1,"synopsis": "Test-Driven is an excellent book for learning how to write unique automation testing programs. It is a must-have book for those Java developers that prioritize code quality as well as have a knack for writing unit, integration, and automation tests.","amazon_rating": 4.1,"release_date": "2007-10-22","tags": ["Software Architecture", "Software Design & Engineering", "Java Programming"]} {"index":{"_index":"books","_id":"8"}} {"title": "Head First Object-Oriented Analysis Design","author": "Brett D. McLaughlin, Gary Pollice & David West","edition": 1,"synopsis": "Head First is one of the most beautiful finest book series ever written on Java programming language. Another gem in the series is the Head First Object-Oriented Analysis Design.","amazon_rating": 3.9,"release_date": "2014-04-29","tags": ["Introductory & Beginning Programming", "Object-Oriented Software Design", "Java Programming"]} {"index":{"_index":"books","_id":"9"}} {"title": "Java Performance: The Definite Guide","author": "Scott Oaks","edition": 1,"synopsis": "Garbage collection, JVM, and performance tuning are some of the most favorable aspects of the Java programming language. It educates readers about maximizing Java threading and synchronization performance features, improve Java-driven database application performance, tackle performance issues","amazon_rating": 4.1,"release_date": "2014-03-04","tags": ["Design Pattern Programming", "Object-Oriented Software Design", "Computer Programming Language & Tool"]} {"index":{"_index":"books","_id":"10"}} {"title": "Head First Design Patterns", "author": "Eric Freeman & Elisabeth Robson with Kathy Sierra & Bert Bates","edition": 10,"synopsis": "Head First Design Patterns is one of the leading books to build that particular understanding of the Java programming language." ,"amazon_rating": 4.5,"release_date": "2014-03-04","tags": ["Design Pattern Programming", "Object-Oriented Software Design eTextbooks", "Web Development & Design eTextbooks"]} {"index":{"_index":"books","_id":"11"}} {"title": "JavaScript - The Definitive Guide", "author": "David Flanagan","edition": 1,"synopsis": "JavaScript is the programming language of the web and is used by more software developers today than any other programming language. For nearly 25 years this best seller has been the go-to guide for JavaScript programmers." ,"amazon_rating": 4.7,"release_date": "2020-05-29","tags": ["Design Pattern Programming", "Object-Oriented Software Design eTextbooks", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"12"}} {"title": "Eloquent Javascript", "author": "Marijn Haverbeke","edition": 3,"synopsis": "JavaScript lies at the heart of almost every modern web application, from social apps like Twitter to browser-based game frameworks like Phaser and Babylon. Though simple for beginners to pick up and play with, JavaScript is a flexible, complex language that you can use to build full-scale applications." ,"amazon_rating": 4.6,"release_date": "2018-12-14","tags": ["DOM", "Node.js","object-oriented and functional programming techniques", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"13"}} {"title": "JavaScript and JQuery: Interactive Front–End Web", "author": "Jon Duckett","edition": 1,"synopsis": "This full-color book adopts a visual approach to teaching JavaScript & jQuery, showing you how to make web pages more interactive and interfaces more intuitive through the use of inspiring code examples, infographics, and photography." ,"amazon_rating": 4.7,"release_date": "2014-07-18","tags": ["DJavaScript and jQuery", "JavaScript APIs, and jQuery plugins", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"14"}} {"title": "A Smarter Way to Learn JavaScript", "author": "Mark Myers","edition": 1,"synopsis": "JThe first problem is retention. You remember only ten or twenty percent of what you read. That spells failure. To become fluent in a computer language, you have to retain pretty much everything." ,"amazon_rating": 4.6,"release_date": "2014-03-20","tags": ["Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"15"}} {"title": "Head First JavaScript Programming", "author": "Eric T. Freeman and Elisabeth Robson","edition": 1,"synopsis": "This brain-friendly guide teaches you everything from JavaScript language fundamentals to advanced topics, including objects, functions, and the browser’s document object model." ,"amazon_rating": 4.5,"release_date": "2014-04-10","tags": ["The secrets of JavaScript types", "The inner details of JavaScript", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"16"}} {"title": "Modern JavaScript for the Impatient", "author": "Cay Horstmann","edition": 1,"synopsis": "Modern JavaScript for the Impatient is a complete yet concise guide to JavaScript E6 and beyond. Rather than first requiring you to learn and transition from older versions, it helps you quickly get productive with today’s far more powerful versions and rapidly move from languages such as Java, C#, C, or C++." ,"amazon_rating": 4.9,"release_date": "2020-08-18","tags": ["modern JavaScript", "Object-Oriented Programming", "JavaScript libraries, frameworks, and platforms"]} {"index":{"_index":"books","_id":"17"}} {"title": "JavaScript in easy steps", "author": "Mike McGrath","edition": 6,"synopsis": "JavaScript in easy steps, 6th edition instructs the user how to create exciting web pages that employ the power of JavaScript to provide functionality. You need have no previous knowledge of any scripting language so it's ideal for the newcomer to JavaScript. By the end of this book you will have gained a sound understanding of JavaScript and be able to add exciting dynamic scripts to your own web pages." ,"amazon_rating": 4.4,"release_date": "2020-02-28","tags": ["Get Started in JavaScript", "Interact with the Document", "Create Web Applications"]} {"index":{"_index":"books","_id":"18"}} {"title": "JavaScript: The Good Parts", "author": "Douglas Crockford","edition": 1,"synopsis": "Most programming languages contain good and bad parts, but JavaScript has more than its share of the bad, having been developed and released in a hurry before it could be refined. This authoritative book scrapes away these bad features to reveal a subset of JavaScript that's more reliable, readable, and maintainable than the language as a whole—a subset you can use to create truly extensible and efficient code." ,"amazon_rating": 4.5,"release_date": "2008-05-18","tags": ["Design Pattern Programming", "Object-Oriented Programming", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"19"}} {"title": "JavaScript Everywhere", "author": "Adam Scott","edition": 1,"synopsis": "JavaScript is the little scripting language that could. Once used chiefly to add interactivity to web browser windows, JavaScript is now a primary building block of powerful and robust applications. In this practical book, new and experienced JavaScript developers will learn how to use this language to create APIs as well as web, mobile, and desktop applications." ,"amazon_rating": 4.5,"release_date": "2020-02-21","tags": ["Building Cross-platform Applications with GraphQL, React, React Native, and Electron", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"20"}} {"title": "JavaScript The Complete Reference", "author": "Thomas A. Powell and Fritz Schneider","edition": 3,"synopsis": "Design, debug, and publish high-performance web pages and applications using tested techniques and best practices from expert developers. The all-new edition of this comprehensive guide has been thoroughly revised and expanded to cover the latest JavaScript features, tools, and programming methods." ,"amazon_rating": 4.3,"release_date": "2012-09-16","tags": ["XMLHttpRequest object to create Ajax applications", "DOM", "Programming Languages, Javascript Programming"]} {"index":{"_index":"books","_id":"21"}} {"title": "The C# Player's Guide", "author": "RB Whitaker","edition": 5,"synopsis": "The book in your hands is a different kind of programming book. Like an entertaining video game, programming is an often challenging but always rewarding experience. This book shakes off the dusty, dull, dryness of the typical programming book, replacing it with something more exciting and flavorful: a bit of humor, a casual tone, and examples involving dragons and asteroids instead of bank accounts and employees." ,"amazon_rating": 5.0,"release_date": "2022-01-14","tags": ["basic mechanics of C#", "object-oriented programming", "advanced C# features"]} {"index":{"_index":"books","_id":"22"}} {"title": "C# 10 and .NET 6", "author": "Mark J. Price","edition": 1,"synopsis": "You will learn object-oriented programming, writing, testing, and debugging functions, implementing interfaces, and inheriting classes. The book covers the .NET APIs for performing tasks like managing and querying data, monitoring and improving performance, and working with the filesystem, async streams, serialization, and encryption. It provides examples of cross-platform apps you can build and deploy, such as websites and services using ASP.NET Core." ,"amazon_rating": 4.6,"release_date": "2021-11-09","tags": ["real-world applications", "latest features of C# 10 and .NET 6", "Visual Studio 2022 and Visual Studio Code"]} {"index":{"_index":"books","_id":"23"}} {"title": "C# Programming in easy steps", "author": "Mike McGrath","edition": 2,"synopsis": "C# Programming in easy steps, 2nd edition will teach you to code applications, and demonstrates every aspect of the C# language you will need to produce professional programming results. Its examples provide clear syntax-highlighted code showing C# language basics including variables, arrays, logic, looping, methods, and classes." ,"amazon_rating": 4.6,"release_date": "2020-05-29","tags": ["programming in C#", "creating apps", "fundamental understanding of C#"]} {"index":{"_index":"books","_id":"24"}} {"title": "Professional C# and .NET", "author": "Christian Nagel","edition": 1,"synopsis": "Experienced programmers making the transition to C# will benefit from the author’s in-depth explorations to create Web- and Windows applications using ASP.NET Core, Blazor, and WinUI using modern application patterns and new features offered by .NET including Microservices deployed to Docker images, GRPC, localization, asynchronous streaming, and much more." ,"amazon_rating": 4.5,"release_date": "2022-03-04","tags": ["extension of .NET to non-Microsoft platforms like OSX and Linux", "Microsoft Azure services such as Azure App", "C# 10 and .NET 6"]} {"index":{"_index":"books","_id":"25"}} {"title": "Head First C#", "author": "Stellman, Andrew, Greene and Jennifer","edition": 4,"synopsis": "What will you learn from this book? For beginning programmers looking to learn C#, this practical guide provides a bright alternative to the legions of dull tutorials on this popular object-oriented language." ,"amazon_rating": 4.6,"release_date": "2021-01-29","tags": ["Real-World Programming with C# and .Net Core", "Object-oriented language", "multi-sensory learning"]} {"index":{"_index":"books","_id":"26"}} {"title": "C# 9.0 in a Nutshell", "author": "Albahari and Joseph","edition": 1,"synopsis": "When you have questions about C# 9.0 or .NET 5, this bestselling guide has the answers. C# is a language of unusual flexibility and breadth, but with its continual growth, there's so much more to learn. In the tradition of O'Reilly's Nutshell guides, this thoroughly updated edition is simply the best one-volume reference to the C# language available today." ,"amazon_rating": 4.5,"release_date": "2021-03-31","tags": ["C# and .NET", "pointers, closures, and patterns Dig deep into LINQ", "Programming Languages"]} {"index":{"_index":"books","_id":"27"}} {"title": "C# in Depth", "author": "Jon Skeet","edition": 4,"synopsis": "C# is an amazing language that's up to any challenge you can throw at it. As a C# developer, you also need to be up to the task." ,"amazon_rating": 4.6,"release_date": "2019-05-20","tags": ["C# 5, 6, and 7", "better code with tuples, string interpolation, pattern matching"]} {"index":{"_index":"books","_id":"28"}} {"title": "C# Data Structures and Algorithms", "author": "Marcin Jamro","edition": 1,"synopsis": "Data structures allow organizing data efficiently. They are critical to various problems and their suitable implementation can provide a complete solution that acts like reusable code. In this book, you will learn how to use various data structures while developing in the C# language as well as how to implement some of the most common algorithms used with such data structures." ,"amazon_rating": 4.6,"release_date": "2018-04-19","tags": ["Implement algorithms", "Build enhanced applications by using hashtables, dictionaries and sets", "Programming Languages, C#"]} {"index":{"_index":"books","_id":"29"}} {"title": "Learning C# by Developing Games with Unity 3D", "author": "Terry Norton","edition": 1,"synopsis": "For the absolute beginner to any concept of programming, writing a script can appear to be an impossible hurdle to overcome. The truth is, there are only three simple concepts to understand: 1) having some type of information; 2) using the information; and 3) communicating the information. Each of these concepts is very simple and extremely important. These three concepts are combined to access the feature set provided by Unity." ,"amazon_rating": 3.9,"release_date": "2013-09-25","tags": ["Unity C# scripts", "GameObjects and Component objects", "Unity's Scripting"]} {"index":{"_index":"books","_id":"30"}} {"title": "Pro C# 9 with .NET 5", "author": "Andrew Troelsen and Phillip Japikse","edition": 1,"synopsis": "This essential classic provides a comprehensive foundation in the C# programming language and the framework it lives in. Now in its 10th edition, you will find the latest C# 9 and .NET 5 features served up with plenty of \"behind the curtain\" discussion designed to expand developers’ critical thinking skills when it comes to their craft. Coverage of ASP.NET Core, Entity Framework Core, and more, sits alongside the latest updates to the new unified .NET platform, from performance improvements to Windows Desktop apps on .NET 5, updates in XAML tooling, and expanded coverage of data files and data handling. Going beyond the latest features in C# 9, all code samples are rewritten for this latest release." ,"amazon_rating": 4.7,"release_date": "2021-06-08","tags": ["C# 9 features", "ASP.NET Core web applications and web services", "C# and modern frameworks for services"]} {"index":{"_index":"books","_id":"31"}} {"title": "Python Crash Course", "author": "Eric Matthes","edition": 2,"synopsis": "Reading books is a kind of enjoyment. Reading books is a good habit. We bring you a different kinds of books. You can carry this book where ever you want. It is easy to carry. It can be an ideal gift to yourself and to your loved ones. Care instruction keep away from fire." ,"amazon_rating": 4.7,"release_date": "2019-05-09","tags": ["Software Architecture", "Functional Programming", "General Introduction to Programming"]} {"index":{"_index":"books","_id":"32"}} {"title": "Automate The Boring Stuff With Python", "author": "Al Sweigart","edition": 2,"synopsis": "Reading books is a kind of enjoyment. Reading books is a good habit. We bring you a different kinds of books. You can carry this book where ever you want. It is easy to carry. It can be an ideal gift to yourself and to your loved ones. Care instruction keep away from fire." ,"amazon_rating": 4.7,"release_date": "2019-10-17","tags": ["Software Architecture", "Functional Programming", "General Introduction to Programming"]} {"index":{"_index":"books","_id":"33"}} {"title": "Python Projects for Beginners", "author": "Connor P. Milliken","edition": 1,"synopsis": "Immerse yourself in learning Python and introductory data analytics with this book’s project-based approach. Through the structure of a ten-week coding bootcamp course, you’ll learn key concepts and gain hands-on experience through weekly projects." ,"amazon_rating": 4.7,"release_date": "2019-11-16","tags": ["Python language", "Python Data Analysis library", "Anaconda, Jupyter Notebooks, and the Python Shell"]} {"index":{"_index":"books","_id":"34"}} {"title": "Python All-in-One For Dummies", "author": "John C. Shovic and Alan Simpson","edition": 2,"synopsis": "Powerful and flexible, Python is one of the most popular programming languages in the world. It's got all the right stuff for the software driving the cutting-edge of the development world—machine learning, robotics, artificial intelligence, data science, etc. The good news is that it’s also pretty straightforward to learn, with a simplified syntax, natural-language flow, and an amazingly supportive user community." ,"amazon_rating": 4.3,"release_date": "2021-04-09","tags": ["Python Building Blocks", "Artificial Intelligence and Python", "Data Science and Python"]} {"index":{"_index":"books","_id":"35"}} {"title": "Learning Python", "author": "Mark Lutz ","edition": 1,"synopsis": "Get a comprehensive, in-depth introduction to the core Python language with this hands-on book. Based on author Mark Lutz’s popular training course, this updated fifth edition will help you quickly write efficient, high-quality code with Python. It’s an ideal way to begin, whether you’re new to programming or a professional developer versed in other languages." ,"amazon_rating": 4.5,"release_date": "2013-07-06","tags": ["Software quality", "Enjoyment", "Powerful Object-Oriented Programming"]} {"index":{"_index":"books","_id":"36"}} {"title": "Data Structure and Algorithmic Thinking with Python", "author": "Narasimha Karumanchi","edition": 1,"synopsis": "\"Data Structure and Algorithmic Thinking with Python\" is designed to give a jump-start to programmers, job hunters and those who are appearing for exams. All the code in this book are written in Python. It contains many programming puzzles that not only encourage analytical thinking, but also prepares readers for interviews. This book, with its focused and practical approach, can help readers quickly pick up the concepts and techniques for developing efficient and effective solutions to problems." ,"amazon_rating": 4.2,"release_date": "2015-01-29","tags": ["Algorithmic Programming", "Introduction to Programming", "Python Programming"]} {"index":{"_index":"books","_id":"37"}} {"title": "Python for Data Analysis", "author": "Wes Mckinney","edition": 2,"synopsis": "Get complete instructions for manipulating, processing, cleaning, and crunching datasets in Python. Updated for Python 3.6, the second edition of this hands-on guide is packed with practical case studies that show you how to solve a broad set of data analysis problems effectively. You’ll learn the latest versions of pandas, NumPy, IPython, and Jupyter in the process. " ,"amazon_rating": 4.6,"release_date": "2017-11-03","tags": ["pandas, NumPy, IPython, and Jupyter", "Python Programming", "Data Analytics"]} {"index":{"_index":"books","_id":"38"}} {"title": "Effective Pandas", "author": "Matt Harrison", "edition": 1, "synopsis": "Best practices for manipulating data with Pandas. This book will arm you with years of knowledge and experience that are condensed into an easy to follow format. Rather than taking months reading blogs and websites and searching mailing lists and groups, this book will teach you how to write good Pandas code." ,"amazon_rating": 4.9,"release_date": "2021-12-08","tags": ["Data Manipulation", "Visualization", "Programming Languages"]} {"index":{"_index":"books","_id":"39"}} {"title": "Python by Example", "author": "Terry Norton","edition": 1,"synopsis": "Python is today's fastest growing programming language. This engaging and refreshingly different guide breaks down the skills into clear step-by-step chunks and explains the theory using brief easy-to-understand language. Rather than bamboozling readers with pages of mind-numbing technical jargon, this book includes 150 practical challenges, putting the power in the reader's hands." ,"amazon_rating": 4.5,"release_date": "2019-06-06","tags": ["Introduction To Programming", "Python Programming"]} {"index":{"_index":"books","_id":"40"}} {"title": "Python Distilled", "author": "David Beazley","edition": 1,"synopsis": "The richness of modern Python challenges developers at all levels. How can programmers who are new to Python know where to begin without being overwhelmed? How can experienced Python developers know they're coding in a manner that is clear and effective? How does one make the jump from learning about individual features to thinking in Python at a deeper level? Dave Beazley's new Python Distilled addresses these and many other real-world issues." ,"amazon_rating": 4.7,"release_date": "2021-11-09","tags": ["Introduction To Programming", "Python Programming"]} {"index":{"_index":"books","_id":"41"}} {"title": "Kotlin Programming", "author": "Josh Skeen, Andrew Bailey and David Greenhalgh","edition": 1,"synopsis": "Kotlin is a statically typed programming language designed to interoperate with Java and fully supported by Google on the Android operating system. It is also a multiplatform language that can be used to write code that can be shared across platforms including macOS, iOS, Windows, and JavaScript." ,"amazon_rating": 5.0,"release_date": "2022-01-13","tags": ["Kotlin Essentials", "Kotlin concepts and foundational APIs"]} {"index":{"_index":"books","_id":"42"}} {"title": "Java to Kotlin", "author": "Duncan McGregor and Nat Pryce","edition": 1,"synopsis": "It takes a week to travel the 8,000 miles overland from Java to Kotlin. If you're an experienced Java developer who has tried the Kotlin language, you were probably productive in about the same time. " ,"amazon_rating": 5.0,"release_date": "2021-08-24","tags": ["Kotlin from scratch", "mixed language codebase"]} {"index":{"_index":"books","_id":"43"}} {"title": "Kotlin in Action", "author": "DDmitry Jemerov","edition": 1,"synopsis": "Kotlin is a new programming language targeting the Java platform. It offers on expressiveness and safety without compromising simplicity,seamless interoperability with existing Java code, and great tooling support. Because Kotlin generates regular Java bytecode and works together with existing Java libraries and frameworks, it can be used almost everywhere where Java is used today - for server-side development, Android apps, and much more." ,"amazon_rating": 4.7,"release_date": "2017-03-27","tags": ["IMobile Phone Programming", "Introduction to Programming"]} {"index":{"_index":"books","_id":"44"}} {"title": "Head First Kotlin", "author": "Dawn Griffiths and David Griffiths","edition": 1,"synopsis": "This hands-on book helps you learn the Kotlin language with a unique method that goes beyond syntax and how-to manuals, and teaches you how to think like a great Kotlin developer. You ll learn everything from language fundamentals to collections, generics, lambdas, and higher-order functions." ,"amazon_rating": 4.4,"release_date": "2019-02-28","tags": ["Introduction To Programming", "Kotlin language"]} {"index":{"_index":"books","_id":"45"}} {"title": "Kotlin Cookbook", "author": "Ken Kousen","edition": 1,"synopsis": "Use Kotlin to build Android apps, web applications, and more—while you learn the nuances of this popular language. With this unique cookbook, developers will learn how to apply thisJava-based language to their own projects. Both experienced programmers and those new to Kotlin will benefit from the practical recipes in this book." ,"amazon_rating": 4.4,"release_date": "2019-11-22","tags": ["Introduction To Programming", "Mobile Phone Programming", "Android and Spring"]} {"index":{"_index":"books","_id":"46"}} {"title": "The Joy of Kotlin", "author": "Pierre-Yves Saumont Saumont","edition": 1,"synopsis": "The Joy of Kotlin teaches readers the right way to code in Kotlin. This insight-rich book covers everything needed to master the Kotlin language while exploring coding techniques that will make readers better developers no matter what language they use." ,"amazon_rating": 4.3,"release_date": "2019-05-20","tags": ["Introduction To Programming", "Safe handling of errors and exceptions", "Dealing with optional data"]} {"index":{"_index":"books","_id":"47"}} {"title": "Discovering Statistics Using R", "author": "Andy Field, Jeremy Miles and Zoe Field","edition": 1,"synopsis": "Discovering Statistics Using R takes students on a journey of statistical discovery using R, a free, flexible and dynamically changing software tool for data analysis that is becoming increasingly popular across the social and behavioural sciences throughout the world." ,"amazon_rating": 4.5,"release_date": "2012-03-22","tags": ["Programming Languages & Tools", "Psychological Methodology", "R Programming"]} {"index":{"_index":"books","_id":"48"}} {"title": "R for Data Science", "author": "Garrett Grolemund and Hadley Wickham","edition": 1,"synopsis": "What exactly is data science? With this book, you’ll gain a clear understanding of this discipline for discovering natural laws in the structure of data. Along the way, you’ll learn how to use the versatile R programming language for data analysis." ,"amazon_rating": 4.7,"release_date": "2016-07-25","tags": ["Data Wrangling", "Data Visualization", "Exploratory Data Analysis"]} {"index":{"_index":"books","_id":"49"}} {"title": "Geocomputation with R", "author": "Robin Lovelace, Jakub Nowosad and Jannes Muenchow","edition": 1,"synopsis": "Geocomputation with R is for people who want to analyze, visualize and model geographic data with open source software. It is based on R, a statistical programming language that has powerful data processing, visualization, and geospatial capabilities." ,"amazon_rating": 5.0,"release_date": "2019-03-21","tags": ["Geocomputation", "R Programming"]} {"index":{"_index":"books","_id":"50"}} {"title": "R Cookbook", "author": "Jd Long and Paul Teetor","edition": 1,"synopsis": "Perform data analysis with R quickly and efficiently with more than 275 practical recipes in this expanded second edition. The R language provides everything you need to do statistical work, but its structure can be difficult to master. These task-oriented recipes make you productive with R immediately. Solutions range from basic tasks to input and output, general statistics, graphics, and linear regression." ,"amazon_rating": 4.6,"release_date": "2019-07-12","tags": ["Data Analysis, Statistics, and Graphics", "R Programming"]} ================================================ FILE: datasets/bulk_mobile_phones_data.json ================================================ ## BIG THANKS to Prathik for this dataset on Kaggle! https://pratikgarai.github.io POST _bulk {"index":{"_index":"mobile_phones"}} {"id":1,"name":"Realme X2 Pro","brand":"Realme","model":"X2 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":2,"name":"iPhone 11 Pro Max","brand":"Apple","model":"iPhone 11 Pro Max","battery_capacity_mAh":3969,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":1242,"resolution_y":2688,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":1130.62,"price_usd":1337.42} {"index":{"_index":"mobile_phones"}} {"id":3,"name":"iPhone 11","brand":"Apple","model":"iPhone 11","battery_capacity_mAh":3110,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":828,"resolution_y":1792,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":665.26,"price_usd":786.94} {"index":{"_index":"mobile_phones"}} {"id":4,"name":"LG G8X ThinQ","brand":"LG","model":"G8X ThinQ","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":528.71,"price_usd":625.42} {"index":{"_index":"mobile_phones"}} {"id":5,"name":"OnePlus 7T","brand":"OnePlus","model":"7T","battery_capacity_mAh":3800,"screen_size_inches":6.55,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":369.43,"price_usd":437.01} {"index":{"_index":"mobile_phones"}} {"id":6,"name":"OnePlus 7T Pro","brand":"OnePlus","model":"7T Pro","battery_capacity_mAh":4085,"screen_size_inches":6.67,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":560.44,"price_usd":662.96} {"index":{"_index":"mobile_phones"}} {"id":7,"name":"Samsung Galaxy Note 10+","brand":"Samsung","model":"Galaxy Note 10+","battery_capacity_mAh":4300,"screen_size_inches":6.8,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3040,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":842.93,"price_usd":997.11} {"index":{"_index":"mobile_phones"}} {"id":8,"name":"Asus ROG Phone 2","brand":"Asus","model":"ROG Phone 2","battery_capacity_mAh":6000,"screen_size_inches":6.59,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":9,"name":"Xiaomi Redmi K20 Pro","brand":"Xiaomi","model":"Redmi K20 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":245.27,"price_usd":290.13} {"index":{"_index":"mobile_phones"}} {"id":10,"name":"Oppo K3","brand":"Oppo","model":"K3","battery_capacity_mAh":3765,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":253.73,"price_usd":300.14} {"index":{"_index":"mobile_phones"}} {"id":11,"name":"Realme X","brand":"Realme","model":"X","battery_capacity_mAh":3765,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":12,"name":"Xiaomi Redmi K20","brand":"Xiaomi","model":"Redmi K20","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":203.93,"price_usd":241.24} {"index":{"_index":"mobile_phones"}} {"id":13,"name":"OnePlus 7 Pro","brand":"OnePlus","model":"7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.67,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":423.0,"price_usd":500.38} {"index":{"_index":"mobile_phones"}} {"id":14,"name":"Oppo Reno 10x Zoom","brand":"Oppo","model":"Reno 10x Zoom","battery_capacity_mAh":4065,"screen_size_inches":6.6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":391.22,"price_usd":462.78} {"index":{"_index":"mobile_phones"}} {"id":15,"name":"Realme 3 Pro","brand":"Realme","model":"3 Pro","battery_capacity_mAh":4045,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":16,"name":"Huawei P30 Pro","brand":"Huawei","model":"P30 Pro","battery_capacity_mAh":4200,"screen_size_inches":6.47,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":40,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":574.09,"price_usd":679.09} {"index":{"_index":"mobile_phones"}} {"id":17,"name":"Redmi Note 7 Pro","brand":"Xiaomi","model":"Redmi Note 7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":103.64,"price_usd":122.59} {"index":{"_index":"mobile_phones"}} {"id":18,"name":"Huawei Mate 20 Pro","brand":"Huawei","model":"Mate 20 Pro","battery_capacity_mAh":4200,"screen_size_inches":6.39,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":40,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":676.78,"price_usd":800.58} {"index":{"_index":"mobile_phones"}} {"id":19,"name":"LG V40 ThinQ","brand":"LG","model":"V40 ThinQ","battery_capacity_mAh":3300,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":20,"name":"OnePlus 6T","brand":"OnePlus","model":"6T","battery_capacity_mAh":3700,"screen_size_inches":6.41,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":338.43,"price_usd":400.34} {"index":{"_index":"mobile_phones"}} {"id":21,"name":"Apple iPhone XR","brand":"Apple","model":"iPhone XR","battery_capacity_mAh":2942,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":828,"resolution_y":1792,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":481.22,"price_usd":569.24} {"index":{"_index":"mobile_phones"}} {"id":22,"name":"Apple iPhone XS Max","brand":"Apple","model":"iPhone XS Max","battery_capacity_mAh":2658,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":1242,"resolution_y":2688,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":23,"name":"Apple iPhone XS","brand":"Apple","model":"iPhone XS","battery_capacity_mAh":2658,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":634.57,"price_usd":750.64} {"index":{"_index":"mobile_phones"}} {"id":24,"name":"Google Pixel 3 XL","brand":"Google","model":"Pixel 3 XL","battery_capacity_mAh":3430,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":507.56,"price_usd":600.4} {"index":{"_index":"mobile_phones"}} {"id":25,"name":"Google Pixel 3","brand":"Google","model":"Pixel 3","battery_capacity_mAh":2915,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":26,"name":"Asus ROG Phone","brand":"Asus","model":"ROG Phone","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":27,"name":"Samsung Galaxy Note 9","brand":"Samsung","model":"Galaxy Note 9","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":602.85,"price_usd":713.11} {"index":{"_index":"mobile_phones"}} {"id":28,"name":"LG G7+ ThinQ","brand":"LG","model":"G7+ ThinQ","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":29,"name":"Asus ZenFone Max Pro M1","brand":"Asus","model":"ZenFone Max Pro M1","battery_capacity_mAh":5000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":30,"name":"Huawei P20 Pro","brand":"Huawei","model":"P20 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2240,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":40,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":528.71,"price_usd":625.42} {"index":{"_index":"mobile_phones"}} {"id":31,"name":"OnePlus 6","brand":"OnePlus","model":"6","battery_capacity_mAh":3300,"screen_size_inches":6.28,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":32,"name":"Asus ZenFone 5Z (ZS620KL)","brand":"Asus","model":"ZenFone 5Z (ZS620KL)","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":200.94,"price_usd":237.7} {"index":{"_index":"mobile_phones"}} {"id":33,"name":"Redmi Note 5 Pro","brand":"Xiaomi","model":"Redmi Note 5 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":98.88,"price_usd":116.96} {"index":{"_index":"mobile_phones"}} {"id":34,"name":"Nokia 7 Plus","brand":"Nokia","model":"7 Plus","battery_capacity_mAh":3800,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":35,"name":"Samsung Galaxy S9+","brand":"Samsung","model":"Galaxy S9+","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":36,"name":"Samsung Galaxy S9","brand":"Samsung","model":"Galaxy S9","battery_capacity_mAh":3000,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":37,"name":"HTC U11+","brand":"HTC","model":"U11+","battery_capacity_mAh":3930,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":560.44,"price_usd":662.96} {"index":{"_index":"mobile_phones"}} {"id":38,"name":"Samsung Galaxy Note 8","brand":"Samsung","model":"Galaxy Note 8","battery_capacity_mAh":3300,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":528.81,"price_usd":625.53} {"index":{"_index":"mobile_phones"}} {"id":39,"name":"Apple iPhone 8","brand":"Apple","model":"iPhone 8","battery_capacity_mAh":1821,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":750,"resolution_y":1334,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":391.32,"price_usd":462.89} {"index":{"_index":"mobile_phones"}} {"id":40,"name":"Apple iPhone 8 Plus","brand":"Apple","model":"iPhone 8 Plus","battery_capacity_mAh":2691,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":497.09,"price_usd":588.01} {"index":{"_index":"mobile_phones"}} {"id":41,"name":"Apple iPhone X","brand":"Apple","model":"iPhone X","battery_capacity_mAh":2716,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":42,"name":"Motorola Moto Z2 Force","brand":"Motorola","model":"Moto Z2 Force","battery_capacity_mAh":2730,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":43,"name":"HTC U11","brand":"HTC","model":"U11","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":571.02,"price_usd":675.47} {"index":{"_index":"mobile_phones"}} {"id":44,"name":"Nokia 8","brand":"Nokia","model":"8","battery_capacity_mAh":3090,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.58,"price_usd":187.59} {"index":{"_index":"mobile_phones"}} {"id":45,"name":"Samsung Galaxy S8+","brand":"Samsung","model":"Galaxy S8+","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":317.29,"price_usd":375.33} {"index":{"_index":"mobile_phones"}} {"id":46,"name":"Samsung Galaxy S8","brand":"Samsung","model":"Galaxy S8","battery_capacity_mAh":3000,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":285.5,"price_usd":337.72} {"index":{"_index":"mobile_phones"}} {"id":47,"name":"LG G6","brand":"LG","model":"G6","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2880,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":253.73,"price_usd":300.14} {"index":{"_index":"mobile_phones"}} {"id":48,"name":"OnePlus 3T","brand":"OnePlus","model":"3T","battery_capacity_mAh":3400,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":49,"name":"Samsung Galaxy C9 Pro","brand":"Samsung","model":"Galaxy C9 Pro","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":50,"name":"Google Pixel XL","brand":"Google","model":"Pixel XL","battery_capacity_mAh":3450,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":327.76,"price_usd":387.71} {"index":{"_index":"mobile_phones"}} {"id":51,"name":"Apple iPhone 7 Plus","brand":"Apple","model":"iPhone 7 Plus","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":52,"name":"Apple iPhone 7","brand":"Apple","model":"iPhone 7","battery_capacity_mAh":1960,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":750,"resolution_y":1334,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":53,"name":"Honor 8","brand":"Honor","model":"8","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":214.13,"price_usd":253.3} {"index":{"_index":"mobile_phones"}} {"id":54,"name":"OnePlus 3","brand":"OnePlus","model":"3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":55,"name":"Asus ZenFone 3 Deluxe (ZS570KL)","brand":"Asus","model":"ZenFone 3 Deluxe (ZS570KL)","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":256,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":475.93,"price_usd":562.98} {"index":{"_index":"mobile_phones"}} {"id":56,"name":"Xiaomi Mi 5","brand":"Xiaomi","model":"Mi 5","battery_capacity_mAh":3000,"screen_size_inches":5.15,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":264.4,"price_usd":312.76} {"index":{"_index":"mobile_phones"}} {"id":57,"name":"Samsung Galaxy S7 Edge","brand":"Samsung","model":"Galaxy S7 Edge","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":423.01,"price_usd":500.39} {"index":{"_index":"mobile_phones"}} {"id":58,"name":"Samsung Galaxy S7","brand":"Samsung","model":"Galaxy S7","battery_capacity_mAh":3000,"screen_size_inches":5.1,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":59,"name":"Motorola Moto X Force","brand":"Motorola","model":"Moto X Force","battery_capacity_mAh":3760,"screen_size_inches":5.4,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":73.97,"price_usd":87.5} {"index":{"_index":"mobile_phones"}} {"id":60,"name":"Google Nexus 6P","brand":"Huawei","model":"Google Nexus 6P","battery_capacity_mAh":3450,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":454.76,"price_usd":537.95} {"index":{"_index":"mobile_phones"}} {"id":61,"name":"Apple iPhone 6s Plus","brand":"Apple","model":"iPhone 6s Plus","battery_capacity_mAh":2750,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":62,"name":"Yu Yureka Plus","brand":"Yu","model":"reka Plus","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.41,"price_usd":75.0} {"index":{"_index":"mobile_phones"}} {"id":63,"name":"Samsung Galaxy A8","brand":"Samsung","model":"Galaxy A8","battery_capacity_mAh":3050,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":77.2,"price_usd":91.32} {"index":{"_index":"mobile_phones"}} {"id":64,"name":"Samsung Galaxy S6","brand":"Samsung","model":"Galaxy S6","battery_capacity_mAh":2550,"screen_size_inches":5.1,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":65,"name":"Yu Yureka","brand":"Yu","model":"reka","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":66,"name":"Xiaomi Redmi Note","brand":"Xiaomi","model":"Redmi Note","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":67,"name":"Realme C3","brand":"Realme","model":"C3","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":68,"name":"Poco X2","brand":"Poco","model":"X2","battery_capacity_mAh":4500,"screen_size_inches":6.67,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":69,"name":"Samsung Galaxy S10 Lite","brand":"Samsung","model":"Galaxy S10 Lite","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":70,"name":"Realme 5i","brand":"Realme","model":"5i","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":71,"name":"Samsung Galaxy Note 10 Lite","brand":"Samsung","model":"Galaxy Note 10 Lite","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":412.47,"price_usd":487.91} {"index":{"_index":"mobile_phones"}} {"id":72,"name":"Vivo V17","brand":"Vivo","model":"V17","battery_capacity_mAh":4500,"screen_size_inches":6.44,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":223.69,"price_usd":264.61} {"index":{"_index":"mobile_phones"}} {"id":73,"name":"Vivo U20","brand":"Vivo","model":"U20","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":74,"name":"Realme 5s","brand":"Realme","model":"5s","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":75,"name":"Realme X2","brand":"Realme","model":"X2","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":64,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":76,"name":"Vivo V17 Pro","brand":"Vivo","model":"V17 Pro","battery_capacity_mAh":4100,"screen_size_inches":6.44,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":277.31,"price_usd":328.04} {"index":{"_index":"mobile_phones"}} {"id":77,"name":"Nubia Red Magic 3S","brand":"Nubia","model":"Red Magic 3S","battery_capacity_mAh":5000,"screen_size_inches":6.65,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":507.66,"price_usd":600.51} {"index":{"_index":"mobile_phones"}} {"id":78,"name":"Samsung Galaxy M30s","brand":"Samsung","model":"Galaxy M30s","battery_capacity_mAh":6000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":79,"name":"Vivo Z1x","brand":"Vivo","model":"Z1x","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":80,"name":"Oppo Reno 2Z","brand":"Oppo","model":"Reno 2Z","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":244.32,"price_usd":289.0} {"index":{"_index":"mobile_phones"}} {"id":81,"name":"Realme XT","brand":"Realme","model":"XT","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":64,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":82,"name":"Redmi Note 8 Pro","brand":"Xiaomi","model":"Redmi Note 8 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":83,"name":"Nokia 7.2","brand":"Nokia","model":"7.2","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":162.63,"price_usd":192.38} {"index":{"_index":"mobile_phones"}} {"id":84,"name":"Samsung Galaxy A50s","brand":"Samsung","model":"Galaxy A50s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":176.1,"price_usd":208.31} {"index":{"_index":"mobile_phones"}} {"id":85,"name":"Realme 5 Pro","brand":"Realme","model":"5 Pro","battery_capacity_mAh":4035,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":86,"name":"Realme 5","brand":"Realme","model":"5","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":90.96,"price_usd":107.59} {"index":{"_index":"mobile_phones"}} {"id":87,"name":"Vivo Z1 Pro","brand":"Vivo","model":"Z1 Pro","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":88,"name":"Xiaomi Mi A3","brand":"Xiaomi","model":"Mi A3","battery_capacity_mAh":4030,"screen_size_inches":6.08,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":125.28,"price_usd":148.19} {"index":{"_index":"mobile_phones"}} {"id":89,"name":"Asus 6Z","brand":"Asus","model":"6Z","battery_capacity_mAh":5000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":48,"front_camera":48,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":90,"name":"Samsung Galaxy M40","brand":"Samsung","model":"Galaxy M40","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":32,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":178.52,"price_usd":211.17} {"index":{"_index":"mobile_phones"}} {"id":91,"name":"Redmi Note 7S","brand":"Xiaomi","model":"Redmi Note 7S","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":91.48,"price_usd":108.21} {"index":{"_index":"mobile_phones"}} {"id":92,"name":"Motorola One Vision","brand":"Motorola","model":"One Vision","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":144.79,"price_usd":171.27} {"index":{"_index":"mobile_phones"}} {"id":93,"name":"Nubia Red Magic 3","brand":"Nubia","model":"Red Magic 3","battery_capacity_mAh":5000,"screen_size_inches":6.65,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":380.74,"price_usd":450.38} {"index":{"_index":"mobile_phones"}} {"id":94,"name":"Oppo A9","brand":"Oppo","model":"A9","battery_capacity_mAh":4020,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":95,"name":"Google Pixel 3a XL","brand":"Google","model":"Pixel 3a XL","battery_capacity_mAh":3700,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":96,"name":"Samsung Galaxy A70","brand":"Samsung","model":"Galaxy A70","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":32,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":235.84,"price_usd":278.98} {"index":{"_index":"mobile_phones"}} {"id":97,"name":"Black Shark 2","brand":"Black Shark","model":"2","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":98,"name":"OnePlus 7","brand":"OnePlus","model":"7","battery_capacity_mAh":3700,"screen_size_inches":6.41,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":99,"name":"LG G8s ThinQ","brand":"LG","model":"G8s ThinQ","battery_capacity_mAh":3550,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2248,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":422.95,"price_usd":500.31} {"index":{"_index":"mobile_phones"}} {"id":100,"name":"Vivo V15 Pro","brand":"Vivo","model":"V15 Pro","battery_capacity_mAh":3700,"screen_size_inches":6.39,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.09,"price_usd":224.86} {"index":{"_index":"mobile_phones"}} {"id":101,"name":"Redmi Note 7","brand":"Xiaomi","model":"Redmi Note 7","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":102.58,"price_usd":121.34} {"index":{"_index":"mobile_phones"}} {"id":102,"name":"Xiaomi Redmi 7","brand":"Xiaomi","model":"Redmi 7","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":77.55,"price_usd":91.73} {"index":{"_index":"mobile_phones"}} {"id":103,"name":"Samsung Galaxy M20","brand":"Samsung","model":"Galaxy M20","battery_capacity_mAh":5000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"No","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":104,"name":"Samsung Galaxy M30","brand":"Samsung","model":"Galaxy M30","battery_capacity_mAh":5000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":105,"name":"Honor View 20","brand":"Honor","model":"View 20","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2310,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":265.68,"price_usd":314.27} {"index":{"_index":"mobile_phones"}} {"id":106,"name":"Asus ZenFone Max Pro M2","brand":"Asus","model":"ZenFone Max Pro M2","battery_capacity_mAh":5000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":107,"name":"Google Pixel 3a","brand":"Google","model":"Pixel 3a","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":327.86,"price_usd":387.83} {"index":{"_index":"mobile_phones"}} {"id":108,"name":"Realme U1","brand":"Realme","model":"U1","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":109,"name":"Honor 10 Lite","brand":"Honor","model":"10 Lite","battery_capacity_mAh":3400,"screen_size_inches":6.21,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":110,"name":"Nokia 8.1","brand":"Nokia","model":"8.1","battery_capacity_mAh":3500,"screen_size_inches":6.18,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2244,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.38,"price_usd":225.2} {"index":{"_index":"mobile_phones"}} {"id":111,"name":"Samsung Galaxy A9 (2018)","brand":"Samsung","model":"Galaxy A9 (2018)","battery_capacity_mAh":3800,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":24,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":232.68,"price_usd":275.24} {"index":{"_index":"mobile_phones"}} {"id":112,"name":"Oppo K1","brand":"Oppo","model":"K1","battery_capacity_mAh":3600,"screen_size_inches":6.41,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":113,"name":"Nokia 7.1","brand":"Nokia","model":"7.1","battery_capacity_mAh":3060,"screen_size_inches":5.84,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":125.86,"price_usd":148.88} {"index":{"_index":"mobile_phones"}} {"id":114,"name":"Realme 2 Pro","brand":"Realme","model":"2 Pro","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":124.48,"price_usd":147.25} {"index":{"_index":"mobile_phones"}} {"id":115,"name":"Vivo V9 Pro","brand":"Vivo","model":"V9 Pro","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":174.41,"price_usd":206.31} {"index":{"_index":"mobile_phones"}} {"id":116,"name":"Samsung Galaxy A7 (2018)","brand":"Samsung","model":"Galaxy A7 (2018)","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":24,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":174.41,"price_usd":206.31} {"index":{"_index":"mobile_phones"}} {"id":117,"name":"Xiaomi Redmi Note 6 Pro","brand":"Xiaomi","model":"Redmi Note 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":101.32,"price_usd":119.85} {"index":{"_index":"mobile_phones"}} {"id":118,"name":"Vivo V11 Pro","brand":"Vivo","model":"V11 Pro","battery_capacity_mAh":3400,"screen_size_inches":6.41,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":119,"name":"Oppo R17 Pro","brand":"Oppo","model":"R17 Pro","battery_capacity_mAh":3700,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":225.27,"price_usd":266.47} {"index":{"_index":"mobile_phones"}} {"id":120,"name":"Nokia 5.1 Plus","brand":"Nokia","model":"5.1 Plus","battery_capacity_mAh":3060,"screen_size_inches":5.86,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":121,"name":"Honor 8X","brand":"Honor","model":"8X","battery_capacity_mAh":3750,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":122,"name":"Poco F1","brand":"Poco","model":"F1","battery_capacity_mAh":4000,"screen_size_inches":6.18,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":123,"name":"Nokia 6.1 Plus","brand":"Nokia","model":"6.1 Plus","battery_capacity_mAh":3060,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":124,"name":"Vivo Nex","brand":"Vivo","model":"Nex","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2316,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":125,"name":"Oppo Find X","brand":"Oppo","model":"Find X","battery_capacity_mAh":3730,"screen_size_inches":6.42,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":624.96,"price_usd":739.27} {"index":{"_index":"mobile_phones"}} {"id":126,"name":"Honor Play","brand":"Honor","model":"Play","battery_capacity_mAh":3750,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.49,"price_usd":225.33} {"index":{"_index":"mobile_phones"}} {"id":127,"name":"Realme 1","brand":"Realme","model":"1","battery_capacity_mAh":3410,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":108.93,"price_usd":128.85} {"index":{"_index":"mobile_phones"}} {"id":128,"name":"Xiaomi Mi A2","brand":"Xiaomi","model":"Mi A2","battery_capacity_mAh":3000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":129,"name":"Honor 10","brand":"Honor","model":"10","battery_capacity_mAh":3400,"screen_size_inches":5.84,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.69,"price_usd":212.56} {"index":{"_index":"mobile_phones"}} {"id":130,"name":"Oppo F7","brand":"Oppo","model":"F7","battery_capacity_mAh":3400,"screen_size_inches":6.23,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":200.85,"price_usd":237.58} {"index":{"_index":"mobile_phones"}} {"id":131,"name":"Vivo X21","brand":"Vivo","model":"X21","battery_capacity_mAh":3200,"screen_size_inches":6.28,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":193.44,"price_usd":228.83} {"index":{"_index":"mobile_phones"}} {"id":132,"name":"Nokia 8 Sirocco","brand":"Nokia","model":"8 Sirocco","battery_capacity_mAh":3260,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":133,"name":"Infinix Hot S3","brand":"Infinix","model":"Hot S3","battery_capacity_mAh":4000,"screen_size_inches":5.65,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":134,"name":"Nokia 6.1","brand":"Nokia","model":"6.1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":93.59,"price_usd":110.71} {"index":{"_index":"mobile_phones"}} {"id":135,"name":"Honor View 10","brand":"Honor","model":"View 10","battery_capacity_mAh":3750,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":168.15,"price_usd":198.91} {"index":{"_index":"mobile_phones"}} {"id":136,"name":"Infinix Zero 5 Pro","brand":"Infinix","model":"Zero 5 Pro","battery_capacity_mAh":4350,"screen_size_inches":5.98,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":168.16,"price_usd":198.92} {"index":{"_index":"mobile_phones"}} {"id":137,"name":"Oppo F5","brand":"Oppo","model":"F5","battery_capacity_mAh":3200,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":138,"name":"OnePlus 5T","brand":"OnePlus","model":"5T","battery_capacity_mAh":3300,"screen_size_inches":6.01,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":301.42,"price_usd":356.55} {"index":{"_index":"mobile_phones"}} {"id":139,"name":"Honor 9i","brand":"Honor","model":"9i","battery_capacity_mAh":3340,"screen_size_inches":5.9,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":140,"name":"Xiaomi Mi MIX 2","brand":"Xiaomi","model":"Mi MIX 2","battery_capacity_mAh":3400,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":141,"name":"Lenovo K8 Plus","brand":"Lenovo","model":"K8 Plus","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":142,"name":"Mi A1","brand":"Xiaomi","model":"Mi A1","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":143,"name":"Sony Xperia XZ1","brand":"Sony","model":"Xperia XZ1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":370.07,"price_usd":437.76} {"index":{"_index":"mobile_phones"}} {"id":144,"name":"LG V30+","brand":"LG","model":"V30+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":145,"name":"Lenovo K8 Note","brand":"Lenovo","model":"K8 Note","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":77.2,"price_usd":91.32} {"index":{"_index":"mobile_phones"}} {"id":146,"name":"Moto G5S","brand":"Motorola","model":"Moto G5S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":147,"name":"Google Pixel 2 XL","brand":"Google","model":"Pixel 2 XL","battery_capacity_mAh":3520,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":137.43,"price_usd":162.57} {"index":{"_index":"mobile_phones"}} {"id":148,"name":"Google Pixel 2","brand":"Google","model":"Pixel 2","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.7,"price_usd":125.03} {"index":{"_index":"mobile_phones"}} {"id":149,"name":"Motorola Moto X4","brand":"Motorola","model":"Moto X4","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":132.21,"price_usd":156.39} {"index":{"_index":"mobile_phones"}} {"id":150,"name":"Moto G5S Plus","brand":"Motorola","model":"Moto G5S Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":151,"name":"Redmi 5","brand":"Xiaomi","model":"Redmi 5","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":152,"name":"Redmi Note 5","brand":"Xiaomi","model":"Redmi Note 5","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":92.0,"price_usd":108.83} {"index":{"_index":"mobile_phones"}} {"id":153,"name":"Jio Phone","brand":"Jio","model":"Phone","battery_capacity_mAh":2000,"screen_size_inches":2.4,"touchscreen":"No","resolution_x":240,"resolution_y":320,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"Yes","price_gbp":13.21,"price_usd":15.63} {"index":{"_index":"mobile_phones"}} {"id":154,"name":"Samsung Galaxy On Max","brand":"Samsung","model":"Galaxy On Max","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":104.6,"price_usd":123.73} {"index":{"_index":"mobile_phones"}} {"id":155,"name":"Motorola Moto Z2 Play","brand":"Motorola","model":"Moto Z2 Play","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":156,"name":"Yu Yureka Black","brand":"Yu","model":"reka Black","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":157,"name":"Xiaomi Mi Max 2","brand":"Xiaomi","model":"Mi Max 2","battery_capacity_mAh":5300,"screen_size_inches":6.44,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":158,"name":"Coolpad Cool Play 6","brand":"Coolpad","model":"Cool Play 6","battery_capacity_mAh":4060,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":159,"name":"OnePlus 5","brand":"OnePlus","model":"5","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":185.08,"price_usd":218.93} {"index":{"_index":"mobile_phones"}} {"id":160,"name":"Asus ZenFone Zoom S","brand":"Asus","model":"ZenFone Zoom S","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":161,"name":"Honor 8 Pro","brand":"Honor","model":"8 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":186.0,"price_usd":220.02} {"index":{"_index":"mobile_phones"}} {"id":162,"name":"Micromax Dual 5","brand":"Micromax","model":"Dual 5","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":163,"name":"Oppo F3 Plus","brand":"Oppo","model":"F3 Plus","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":164,"name":"Sony Xperia XZ Premium","brand":"Sony","model":"Xperia XZ Premium","battery_capacity_mAh":3230,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":2160,"resolution_y":3840,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":354.31,"price_usd":419.12} {"index":{"_index":"mobile_phones"}} {"id":165,"name":"Motorola Moto G5 Plus","brand":"Motorola","model":"Moto G5 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":115.28,"price_usd":136.37} {"index":{"_index":"mobile_phones"}} {"id":166,"name":"Asus ZenFone 3S Max","brand":"Asus","model":"ZenFone 3S Max","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":167,"name":"Samsung Galaxy C7 Pro","brand":"Samsung","model":"Galaxy C7 Pro","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":168,"name":"HTC U Play","brand":"HTC","model":"U Play","battery_capacity_mAh":2500,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":163.93,"price_usd":193.92} {"index":{"_index":"mobile_phones"}} {"id":169,"name":"HTC U Ultra","brand":"HTC","model":"U Ultra","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":578.16,"price_usd":683.91} {"index":{"_index":"mobile_phones"}} {"id":170,"name":"Asus ZenFone AR","brand":"Asus","model":"ZenFone AR","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":528.81,"price_usd":625.53} {"index":{"_index":"mobile_phones"}} {"id":171,"name":"Xiaomi Redmi 4A","brand":"Xiaomi","model":"Redmi 4A","battery_capacity_mAh":3120,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":172,"name":"Xiaomi Redmi 4","brand":"Xiaomi","model":"Redmi 4","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":173,"name":"Nubia Z11 mini S","brand":"Nubia","model":"Z11 mini S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":174,"name":"Lenovo Z2 Plus","brand":"Lenovo","model":"Z2 Plus","battery_capacity_mAh":3500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":121.62,"price_usd":143.86} {"index":{"_index":"mobile_phones"}} {"id":175,"name":"LG V20","brand":"LG","model":"V20","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":176,"name":"Lenovo K6 Power","brand":"Lenovo","model":"K6 Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":177,"name":"Sony Xperia XZ","brand":"Sony","model":"Xperia XZ","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":178,"name":"Samsung Galaxy J7 Prime","brand":"Samsung","model":"Galaxy J7 Prime","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.17,"price_usd":200.11} {"index":{"_index":"mobile_phones"}} {"id":179,"name":"Motorola Moto Z Play","brand":"Motorola","model":"Moto Z Play","battery_capacity_mAh":3510,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":180,"name":"Xiaomi Redmi Note 4","brand":"Xiaomi","model":"Redmi Note 4","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":181,"name":"Xiaomi Redmi 3S Prime","brand":"Xiaomi","model":"Redmi 3S Prime","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":182,"name":"Motorola Moto Z","brand":"Motorola","model":"Moto Z","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":183,"name":"Asus ZenFone 3 (ZE552KL)","brand":"Asus","model":"ZenFone 3 (ZE552KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":184,"name":"Smartron t.phone","brand":"Smartron","model":"t.phone","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":185,"name":"Motorola Moto G4 Plus","brand":"Motorola","model":"Moto G4 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":186,"name":"Coolpad Max","brand":"Coolpad","model":"Max","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":187,"name":"Xiaomi Mi Max","brand":"Xiaomi","model":"Mi Max","battery_capacity_mAh":4850,"screen_size_inches":6.44,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":188,"name":"Lenovo Zuk Z1","brand":"Lenovo","model":"Zuk Z1","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":189,"name":"LeEco Le 2","brand":"LeEco","model":"Le 2","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":190,"name":"LeEco Le Max 2","brand":"LeEco","model":"Le Max 2","battery_capacity_mAh":3100,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":82.39,"price_usd":97.46} {"index":{"_index":"mobile_phones"}} {"id":191,"name":"Huawei P9","brand":"Huawei","model":"P9","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":192,"name":"Apple iPhone SE","brand":"Apple","model":"iPhone SE","battery_capacity_mAh":1624,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":640,"resolution_y":1136,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":1.2,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":193,"name":"LG G5","brand":"LG","model":"G5","battery_capacity_mAh":2800,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":194,"name":"Oppo F1","brand":"Oppo","model":"F1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":195,"name":"Samsung Galaxy A5 (2016)","brand":"Samsung","model":"Galaxy A5 (2016)","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":196,"name":"Xiaomi Redmi Note 3","brand":"Xiaomi","model":"Redmi Note 3","battery_capacity_mAh":4050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.97,"price_usd":86.31} {"index":{"_index":"mobile_phones"}} {"id":197,"name":"HTC One A9","brand":"HTC","model":"One A9","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":318.87,"price_usd":377.19} {"index":{"_index":"mobile_phones"}} {"id":198,"name":"BlackBerry Priv","brand":"BlackBerry","model":"Priv","battery_capacity_mAh":3410,"screen_size_inches":5.4,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":18,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":199,"name":"Google Nexus 5X","brand":"LG","model":"Google Nexus 5X","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12.3,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":200,"name":"Apple iPhone 6s","brand":"Apple","model":"iPhone 6s","battery_capacity_mAh":1715,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":750,"resolution_y":1334,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":201,"name":"Lenovo Vibe P1","brand":"Lenovo","model":"Vibe P1","battery_capacity_mAh":4900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":202,"name":"Lenovo Vibe S1","brand":"Lenovo","model":"Vibe S1","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":203,"name":"Samsung Galaxy S6 Edge+","brand":"Samsung","model":"Galaxy S6 Edge+","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":190.36,"price_usd":225.18} {"index":{"_index":"mobile_phones"}} {"id":204,"name":"Samsung Galaxy Note 5","brand":"Samsung","model":"Galaxy Note 5","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":205,"name":"Motorola Moto X Play","brand":"Motorola","model":"Moto X Play","battery_capacity_mAh":3630,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":206,"name":"Motorola Moto G (Gen 3)","brand":"Motorola","model":"Moto G (Gen 3)","battery_capacity_mAh":2470,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":207,"name":"Honor 7","brand":"Honor","model":"7","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":20,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":208,"name":"Asus ZenFone Selfie","brand":"Asus","model":"ZenFone Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":209,"name":"LG G4","brand":"LG","model":"G4","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":140.66,"price_usd":166.38} {"index":{"_index":"mobile_phones"}} {"id":210,"name":"Xiaomi Mi 4i","brand":"Xiaomi","model":"Mi 4i","battery_capacity_mAh":3120,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":211,"name":"Lenovo K3 Note","brand":"Lenovo","model":"K3 Note","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":212,"name":"Motorola Moto Turbo","brand":"Motorola","model":"Moto Turbo","battery_capacity_mAh":3900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":21,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":338.43,"price_usd":400.34} {"index":{"_index":"mobile_phones"}} {"id":213,"name":"Gionee Elife S7","brand":"Gionee","model":"Elife S7","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":214,"name":"Lenovo Vibe Shot","brand":"Lenovo","model":"Vibe Shot","battery_capacity_mAh":2900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":103.64,"price_usd":122.59} {"index":{"_index":"mobile_phones"}} {"id":215,"name":"Samsung Galaxy S6 Edge","brand":"Samsung","model":"Galaxy S6 Edge","battery_capacity_mAh":2600,"screen_size_inches":5.1,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":216,"name":"Honor 6 Plus","brand":"Honor","model":"6 Plus","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":280.26,"price_usd":331.53} {"index":{"_index":"mobile_phones"}} {"id":217,"name":"HTC Desire 820s","brand":"HTC","model":"Desire 820s","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":269.7,"price_usd":319.03} {"index":{"_index":"mobile_phones"}} {"id":218,"name":"HTC One (M8 Eye)","brand":"HTC","model":"One (M8 Eye)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":301.43,"price_usd":356.56} {"index":{"_index":"mobile_phones"}} {"id":219,"name":"Google Nexus 6","brand":"Motorola","model":"Google Nexus 6","battery_capacity_mAh":3220,"screen_size_inches":5.96,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":142.68,"price_usd":168.77} {"index":{"_index":"mobile_phones"}} {"id":220,"name":"HTC Desire Eye","brand":"HTC","model":"Desire Eye","battery_capacity_mAh":2400,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":221,"name":"BlackBerry Passport","brand":"BlackBerry","model":"Passport","battery_capacity_mAh":3450,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":222,"name":"Apple iPhone 6 Plus","brand":"Apple","model":"iPhone 6 Plus","battery_capacity_mAh":2915,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":223,"name":"Apple iPhone 6","brand":"Apple","model":"iPhone 6","battery_capacity_mAh":1810,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":750,"resolution_y":1334,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":224,"name":"Motorola Moto X (Gen 2)","brand":"Motorola","model":"Moto X (Gen 2)","battery_capacity_mAh":2300,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":225,"name":"Motorola Moto G (Gen 2)","brand":"Motorola","model":"Moto G (Gen 2)","battery_capacity_mAh":2070,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":142.78,"price_usd":168.9} {"index":{"_index":"mobile_phones"}} {"id":226,"name":"Sony Xperia Z3 Compact","brand":"Sony","model":"Xperia Z3 Compact","battery_capacity_mAh":2600,"screen_size_inches":4.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":412.37,"price_usd":487.8} {"index":{"_index":"mobile_phones"}} {"id":227,"name":"Samsung Galaxy Note 4","brand":"Samsung","model":"Galaxy Note 4","battery_capacity_mAh":3220,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":3.7,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":295.08,"price_usd":349.06} {"index":{"_index":"mobile_phones"}} {"id":228,"name":"Samsung Galaxy Note Edge","brand":"Samsung","model":"Galaxy Note Edge","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"Yes","resolution_x":1600,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":3.7,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":316.76,"price_usd":374.7} {"index":{"_index":"mobile_phones"}} {"id":229,"name":"Xiaomi Mi 4","brand":"Xiaomi","model":"Mi 4","battery_capacity_mAh":3080,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":84.47,"price_usd":99.92} {"index":{"_index":"mobile_phones"}} {"id":230,"name":"Lenovo Vibe Z2 Pro","brand":"Lenovo","model":"Vibe Z2 Pro","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":231,"name":"OnePlus One","brand":"OnePlus","model":"One","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":232.67,"price_usd":275.23} {"index":{"_index":"mobile_phones"}} {"id":232,"name":"Samsung Galaxy S5","brand":"Samsung","model":"Galaxy S5","battery_capacity_mAh":2800,"screen_size_inches":5.1,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":359.59,"price_usd":425.36} {"index":{"_index":"mobile_phones"}} {"id":233,"name":"Sony Xperia Z2","brand":"Sony","model":"Xperia Z2","battery_capacity_mAh":3200,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":380.65,"price_usd":450.27} {"index":{"_index":"mobile_phones"}} {"id":234,"name":"Sony Xperia Z1 Compact","brand":"Sony","model":"Xperia Z1 Compact","battery_capacity_mAh":2300,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":235,"name":"Gionee Elife E7","brand":"Gionee","model":"Elife E7","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":236,"name":"Samsung Galaxy Grand 2","brand":"Samsung","model":"Galaxy Grand 2","battery_capacity_mAh":2600,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":237,"name":"Motorola Moto G","brand":"Motorola","model":"Moto G","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":238,"name":"Google Nexus 5","brand":"LG","model":"Google Nexus 5","battery_capacity_mAh":2300,"screen_size_inches":4.95,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":239,"name":"Nokia Lumia 1520","brand":"Nokia","model":"Lumia 1520","battery_capacity_mAh":3400,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":20,"front_camera":1.2,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":370.07,"price_usd":437.76} {"index":{"_index":"mobile_phones"}} {"id":240,"name":"Apple iPhone 5c","brand":"Apple","model":"iPhone 5c","battery_capacity_mAh":1507,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":640,"resolution_y":1136,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":241,"name":"Xiaomi Mi 3","brand":"Xiaomi","model":"Mi 3","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":242,"name":"Samsung Galaxy Note 3","brand":"Samsung","model":"Galaxy Note 3","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":535.7,"price_usd":633.68} {"index":{"_index":"mobile_phones"}} {"id":243,"name":"Sony Xperia Z1","brand":"Sony","model":"Xperia Z1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":599.67,"price_usd":709.36} {"index":{"_index":"mobile_phones"}} {"id":244,"name":"LG G2","brand":"LG","model":"G2","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2.1,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":237.96,"price_usd":281.48} {"index":{"_index":"mobile_phones"}} {"id":245,"name":"Motorola Moto X","brand":"Motorola","model":"Moto X","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":10,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":158.65,"price_usd":187.66} {"index":{"_index":"mobile_phones"}} {"id":246,"name":"Sony Xperia Z","brand":"Sony","model":"Xperia Z","battery_capacity_mAh":2330,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13.1,"front_camera":2.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":343.63,"price_usd":406.48} {"index":{"_index":"mobile_phones"}} {"id":247,"name":"Samsung Galaxy S III","brand":"Samsung","model":"Galaxy S III","battery_capacity_mAh":2100,"screen_size_inches":4.8,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":248,"name":"Samsung Galaxy S4","brand":"Samsung","model":"Galaxy S4","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":612.53,"price_usd":724.57} {"index":{"_index":"mobile_phones"}} {"id":249,"name":"Nokia Lumia 920","brand":"Nokia","model":"Lumia 920","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":32,"rear_camera":8.7,"front_camera":1.3,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":250,"name":"Oppo F15","brand":"Oppo","model":"F15","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":197.67,"price_usd":233.83} {"index":{"_index":"mobile_phones"}} {"id":251,"name":"Vivo S1 Pro","brand":"Vivo","model":"S1 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":196.71,"price_usd":232.69} {"index":{"_index":"mobile_phones"}} {"id":252,"name":"Motorola Moto G8 Plus","brand":"Motorola","model":"Moto G8 Plus","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":253,"name":"Motorola One Macro","brand":"Motorola","model":"One Macro","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":254,"name":"Vivo U10","brand":"Vivo","model":"U10","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"Yes","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":255,"name":"Redmi 8A","brand":"Xiaomi","model":"Redmi 8A","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":256,"name":"Oppo A9 2020","brand":"Oppo","model":"A9 2020","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":155.79,"price_usd":184.29} {"index":{"_index":"mobile_phones"}} {"id":257,"name":"Samsung Galaxy M10s","brand":"Samsung","model":"Galaxy M10s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":258,"name":"Infinix Hot 8","brand":"Infinix","model":"Hot 8","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":259,"name":"Redmi Note 8","brand":"Xiaomi","model":"Redmi Note 8","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":97.25,"price_usd":115.04} {"index":{"_index":"mobile_phones"}} {"id":260,"name":"Redmi 8","brand":"Xiaomi","model":"Redmi 8","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":261,"name":"Realme 3i","brand":"Realme","model":"3i","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":262,"name":"Infinix Hot 7","brand":"Infinix","model":"Hot 7","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":263,"name":"Honor 9X","brand":"Honor","model":"9X","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":264,"name":"Motorola One Action","brand":"Motorola","model":"One Action","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":12,"front_camera":12,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":265,"name":"LG W30","brand":"LG","model":"W30","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":266,"name":"Infinix Hot 7 Pro","brand":"Infinix","model":"Hot 7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":267,"name":"Redmi 7A","brand":"Xiaomi","model":"Redmi 7A","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":268,"name":"Infinix S4","brand":"Infinix","model":"S4","battery_capacity_mAh":4000,"screen_size_inches":6.21,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":269,"name":"Vivo Y17","brand":"Vivo","model":"Y17","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"Yes","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":121.52,"price_usd":143.75} {"index":{"_index":"mobile_phones"}} {"id":270,"name":"Infinix Smart 3 Plus","brand":"Infinix","model":"Smart 3 Plus","battery_capacity_mAh":3500,"screen_size_inches":6.21,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":271,"name":"Oppo A1k","brand":"Oppo","model":"A1k","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":70.54,"price_usd":83.45} {"index":{"_index":"mobile_phones"}} {"id":272,"name":"Oppo A5s","brand":"Oppo","model":"A5s","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1520,"resolution_y":720,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":83.92,"price_usd":99.27} {"index":{"_index":"mobile_phones"}} {"id":273,"name":"Xiaomi Redmi Y3","brand":"Xiaomi","model":"Redmi Y3","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":274,"name":"Realme C2","brand":"Realme","model":"C2","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":275,"name":"Honor 20i","brand":"Honor","model":"20i","battery_capacity_mAh":3400,"screen_size_inches":6.21,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":24,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":276,"name":"Vivo S1","brand":"Vivo","model":"S1","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":158.42,"price_usd":187.4} {"index":{"_index":"mobile_phones"}} {"id":277,"name":"Realme 3","brand":"Realme","model":"3","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":278,"name":"Vivo V15","brand":"Vivo","model":"V15","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":279,"name":"Redmi Go","brand":"Xiaomi","model":"Redmi Go","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":280,"name":"Meizu M16th","brand":"Meizu","model":"M16th","battery_capacity_mAh":3010,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":281,"name":"Asus ZenFone Max M2","brand":"Asus","model":"ZenFone Max M2","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":282,"name":"Infinix Note 5 Stylus","brand":"Infinix","model":"Note 5 Stylus","battery_capacity_mAh":4000,"screen_size_inches":5.93,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":283,"name":"Infinix Hot S3X","brand":"Infinix","model":"Hot S3X","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":284,"name":"Asus ZenFone Lite L1 (ZA551KL)","brand":"Asus","model":"ZenFone Lite L1 (ZA551KL)","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":285,"name":"Asus ZenFone Max M1 (ZB556KL)","brand":"Asus","model":"ZenFone Max M1 (ZB556KL)","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":286,"name":"Lenovo K9","brand":"Lenovo","model":"K9","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":287,"name":"Nokia 3.1 Plus","brand":"Nokia","model":"3.1 Plus","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.45,"price_usd":85.7} {"index":{"_index":"mobile_phones"}} {"id":288,"name":"Honor 8C","brand":"Honor","model":"8C","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":289,"name":"Panasonic Eluga X1 Pro","brand":"Panasonic","model":"Eluga X1 Pro","battery_capacity_mAh":3000,"screen_size_inches":6.18,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":290,"name":"Realme C1","brand":"Realme","model":"C1","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":291,"name":"BlackBerry KEY2 LE","brand":"BlackBerry","model":"KEY2 LE","battery_capacity_mAh":3000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1620,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":243.15,"price_usd":287.63} {"index":{"_index":"mobile_phones"}} {"id":292,"name":"Realme 2","brand":"Realme","model":"2","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":293,"name":"Infinix Note 5","brand":"Infinix","model":"Note 5","battery_capacity_mAh":4500,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":61.87,"price_usd":73.19} {"index":{"_index":"mobile_phones"}} {"id":294,"name":"Oppo F9 Pro","brand":"Oppo","model":"F9 Pro","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":295,"name":"Oppo F9","brand":"Oppo","model":"F9","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.85,"price_usd":150.06} {"index":{"_index":"mobile_phones"}} {"id":296,"name":"Honor 9N","brand":"Honor","model":"9N","battery_capacity_mAh":3000,"screen_size_inches":5.84,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":297,"name":"Huawei Nova 3i","brand":"Huawei","model":"Nova 3i","battery_capacity_mAh":3340,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":232.67,"price_usd":275.23} {"index":{"_index":"mobile_phones"}} {"id":298,"name":"Huawei Nova 3","brand":"Huawei","model":"Nova 3","battery_capacity_mAh":3750,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":299,"name":"Xiaomi Redmi 6 Pro","brand":"Xiaomi","model":"Redmi 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.84,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":87.68,"price_usd":103.72} {"index":{"_index":"mobile_phones"}} {"id":300,"name":"Xiaomi Redmi 6A","brand":"Xiaomi","model":"Redmi 6A","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":301,"name":"Xiaomi Redmi Y2","brand":"Xiaomi","model":"Redmi Y2","battery_capacity_mAh":3080,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":302,"name":"Tecno Camon iClick","brand":"Tecno","model":"Camon iClick","battery_capacity_mAh":3750,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.48,"price_usd":92.83} {"index":{"_index":"mobile_phones"}} {"id":303,"name":"Redmi 6","brand":"Xiaomi","model":"Redmi 6","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.94,"price_usd":89.83} {"index":{"_index":"mobile_phones"}} {"id":304,"name":"Samsung Galaxy J8","brand":"Samsung","model":"Galaxy J8","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":163.92,"price_usd":193.91} {"index":{"_index":"mobile_phones"}} {"id":305,"name":"Samsung Galaxy J6","brand":"Samsung","model":"Galaxy J6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":306,"name":"Samsung Galaxy A6+","brand":"Samsung","model":"Galaxy A6+","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":307,"name":"Moto E5 Plus","brand":"Motorola","model":"Moto E5 Plus","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":99.41,"price_usd":117.59} {"index":{"_index":"mobile_phones"}} {"id":308,"name":"Nubia Red Magic","brand":"Nubia","model":"Red Magic","battery_capacity_mAh":3800,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":24,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":262.93,"price_usd":311.02} {"index":{"_index":"mobile_phones"}} {"id":309,"name":"InFocus Vision 3 Pro","brand":"InFocus","model":"Vision 3 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":310,"name":"Itel S42","brand":"Itel","model":"S42","battery_capacity_mAh":3000,"screen_size_inches":5.65,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.69,"price_usd":106.09} {"index":{"_index":"mobile_phones"}} {"id":311,"name":"Huawei P20 Lite","brand":"Huawei","model":"P20 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.84,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":135.38,"price_usd":160.14} {"index":{"_index":"mobile_phones"}} {"id":312,"name":"Vivo V9","brand":"Vivo","model":"V9","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":145.32,"price_usd":171.9} {"index":{"_index":"mobile_phones"}} {"id":313,"name":"Moto G6 Play","brand":"Motorola","model":"Moto G6 Play","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":85.13,"price_usd":100.7} {"index":{"_index":"mobile_phones"}} {"id":314,"name":"Honor 7C","brand":"Honor","model":"7C","battery_capacity_mAh":3000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":82.49,"price_usd":97.57} {"index":{"_index":"mobile_phones"}} {"id":315,"name":"Moto G6","brand":"Motorola","model":"Moto G6","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":316,"name":"Smartron t.phone P","brand":"Smartron","model":"t.phone P","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":111.05,"price_usd":131.36} {"index":{"_index":"mobile_phones"}} {"id":317,"name":"Oppo A83","brand":"Oppo","model":"A83","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":318,"name":"Honor 9 Lite","brand":"Honor","model":"9 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.65,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.44,"price_usd":111.71} {"index":{"_index":"mobile_phones"}} {"id":319,"name":"10.or D","brand":"10.or","model":"D","battery_capacity_mAh":3500,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":320,"name":"InFocus Vision 3","brand":"InFocus","model":"Vision 3","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.45,"price_usd":85.7} {"index":{"_index":"mobile_phones"}} {"id":321,"name":"Samsung Galaxy A8+ (2018)","brand":"Samsung","model":"Galaxy A8+ (2018)","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":178.74,"price_usd":211.44} {"index":{"_index":"mobile_phones"}} {"id":322,"name":"Gionee S11 Lite","brand":"Gionee","model":"S11 Lite","battery_capacity_mAh":3030,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.83,"price_usd":79.06} {"index":{"_index":"mobile_phones"}} {"id":323,"name":"Vivo V7","brand":"Vivo","model":"V7","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":324,"name":"Redmi Y1","brand":"Xiaomi","model":"Redmi Y1","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":325,"name":"Redmi 5A","brand":"Xiaomi","model":"Redmi 5A","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":76.14,"price_usd":90.07} {"index":{"_index":"mobile_phones"}} {"id":326,"name":"Honor 7X","brand":"Honor","model":"7X","battery_capacity_mAh":3340,"screen_size_inches":5.93,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":134.55,"price_usd":159.16} {"index":{"_index":"mobile_phones"}} {"id":327,"name":"Honor Holly 4","brand":"Honor","model":"Holly 4","battery_capacity_mAh":3020,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":328,"name":"Gionee M7 Power","brand":"Gionee","model":"M7 Power","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":329,"name":"Vivo V7+","brand":"Vivo","model":"V7+","battery_capacity_mAh":3225,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":330,"name":"Asus ZenFone 4 Selfie Pro","brand":"Asus","model":"ZenFone 4 Selfie Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":331,"name":"LG Q6","brand":"LG","model":"Q6","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.64,"price_usd":111.95} {"index":{"_index":"mobile_phones"}} {"id":332,"name":"Oppo F3","brand":"Oppo","model":"F3","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":333,"name":"Smartron srt.phone","brand":"Smartron","model":"srt.phone","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":334,"name":"Vivo V5s","brand":"Vivo","model":"V5s","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":335,"name":"Micromax Evok Power","brand":"Micromax","model":"Evok Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":336,"name":"Lava Z25","brand":"Lava","model":"Z25","battery_capacity_mAh":3020,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":337,"name":"Nubia M2","brand":"Nubia","model":"M2","battery_capacity_mAh":3630,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":338,"name":"Cat S60","brand":"Cat","model":"S60","battery_capacity_mAh":3800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":339,"name":"Coolpad Note 5 Lite","brand":"Coolpad","model":"Note 5 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":340,"name":"Gionee A1","brand":"Gionee","model":"A1","battery_capacity_mAh":4010,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":341,"name":"Sony Xperia XA1 Ultra","brand":"Sony","model":"Xperia XA1 Ultra","battery_capacity_mAh":2700,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":23,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":63.4,"price_usd":74.99} {"index":{"_index":"mobile_phones"}} {"id":342,"name":"Sony Xperia XZs","brand":"Sony","model":"Xperia XZs","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.19,"price_usd":375.2} {"index":{"_index":"mobile_phones"}} {"id":343,"name":"Gionee A1 Plus","brand":"Gionee","model":"A1 Plus","battery_capacity_mAh":4550,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":10.51,"price_usd":12.44} {"index":{"_index":"mobile_phones"}} {"id":344,"name":"Motorola Moto G5","brand":"Motorola","model":"Moto G5","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.64,"price_usd":68.18} {"index":{"_index":"mobile_phones"}} {"id":345,"name":"Honor 8 Lite","brand":"Honor","model":"8 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":157.94,"price_usd":186.83} {"index":{"_index":"mobile_phones"}} {"id":346,"name":"Vivo V5 Plus","brand":"Vivo","model":"V5 Plus","battery_capacity_mAh":3055,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":132.21,"price_usd":156.39} {"index":{"_index":"mobile_phones"}} {"id":347,"name":"Nokia 6","brand":"Nokia","model":"6","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":76.68,"price_usd":90.7} {"index":{"_index":"mobile_phones"}} {"id":348,"name":"Samsung Galaxy A7 (2017)","brand":"Samsung","model":"Galaxy A7 (2017)","battery_capacity_mAh":3600,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":273.93,"price_usd":324.03} {"index":{"_index":"mobile_phones"}} {"id":349,"name":"Samsung Galaxy A5 (2017)","brand":"Samsung","model":"Galaxy A5 (2017)","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":200.94,"price_usd":237.7} {"index":{"_index":"mobile_phones"}} {"id":350,"name":"Coolpad Note 3S","brand":"Coolpad","model":"Note 3S","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":351,"name":"Oppo A57","brand":"Oppo","model":"A57","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":352,"name":"Vivo V5","brand":"Vivo","model":"V5","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":174.94,"price_usd":206.94} {"index":{"_index":"mobile_phones"}} {"id":353,"name":"Asus ZenFone 3 Max (ZC553KL)","brand":"Asus","model":"ZenFone 3 Max (ZC553KL)","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":90.95,"price_usd":107.58} {"index":{"_index":"mobile_phones"}} {"id":354,"name":"Lyf F1","brand":"Lyf","model":"F1","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":355,"name":"InFocus Epic 1","brand":"InFocus","model":"Epic 1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":356,"name":"Honor 6X","brand":"Honor","model":"6X","battery_capacity_mAh":3340,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":357,"name":"Intex Aqua S7","brand":"Intex","model":"Aqua S7","battery_capacity_mAh":3200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":358,"name":"Lenovo P2","brand":"Lenovo","model":"P2","battery_capacity_mAh":5100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":359,"name":"Lenovo K6 Note","brand":"Lenovo","model":"K6 Note","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":360,"name":"Gionee S6s","brand":"Gionee","model":"S6s","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":361,"name":"Coolpad Cool 1 Dual","brand":"Coolpad","model":"Cool 1 Dual","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":133.68,"price_usd":158.13} {"index":{"_index":"mobile_phones"}} {"id":362,"name":"Oppo F1s","brand":"Oppo","model":"F1s","battery_capacity_mAh":3075,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":363,"name":"BlackBerry DTEK50","brand":"BlackBerry","model":"DTEK50","battery_capacity_mAh":2610,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":364,"name":"Asus ZenFone 3 Laser","brand":"Asus","model":"ZenFone 3 Laser","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":365,"name":"Lenovo Phab 2 Plus","brand":"Lenovo","model":"Phab 2 Plus","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":366,"name":"Yu Yunicorn","brand":"Yu","model":"nicorn","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":367,"name":"Coolpad Note 3 Plus","brand":"Coolpad","model":"Note 3 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.09,"price_usd":78.18} {"index":{"_index":"mobile_phones"}} {"id":368,"name":"LeEco Le 1s Eco","brand":"LeEco","model":"Le 1s Eco","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":369,"name":"Vivo V3Max","brand":"Vivo","model":"V3Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.15,"price_usd":224.93} {"index":{"_index":"mobile_phones"}} {"id":370,"name":"Oppo F1 Plus","brand":"Oppo","model":"F1 Plus","battery_capacity_mAh":2850,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":371,"name":"InFocus Bingo 50","brand":"InFocus","model":"Bingo 50","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":372,"name":"Lenovo Vibe K5","brand":"Lenovo","model":"Vibe K5","battery_capacity_mAh":2750,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":373,"name":"Lenovo Vibe K5 Plus","brand":"Lenovo","model":"Vibe K5 Plus","battery_capacity_mAh":2750,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":374,"name":"Xolo Era 4K","brand":"Xolo","model":"Era 4K","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":375,"name":"LG X screen","brand":"LG","model":"X screen","battery_capacity_mAh":2300,"screen_size_inches":4.93,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":376,"name":"Coolpad Note 3 Lite","brand":"Coolpad","model":"Note 3 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":377,"name":"Lenovo Vibe K4 Note","brand":"Lenovo","model":"Vibe K4 Note","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":378,"name":"Gionee Marathon M5 Plus","brand":"Gionee","model":"Marathon M5 Plus","battery_capacity_mAh":5020,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":252.78,"price_usd":299.01} {"index":{"_index":"mobile_phones"}} {"id":379,"name":"Intex Aqua GenX","brand":"Intex","model":"Aqua GenX","battery_capacity_mAh":2850,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":101.85,"price_usd":120.48} {"index":{"_index":"mobile_phones"}} {"id":380,"name":"Yu Yutopia","brand":"Yu","model":"topia","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":381,"name":"InFocus M680","brand":"InFocus","model":"M680","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":382,"name":"Gionee Marathon M5 Lite","brand":"Gionee","model":"Marathon M5 Lite","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":383,"name":"Gionee S6","brand":"Gionee","model":"S6","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.2,"price_usd":200.15} {"index":{"_index":"mobile_phones"}} {"id":384,"name":"Motorola Moto G Turbo Edition","brand":"Motorola","model":"Moto G Turbo Edition","battery_capacity_mAh":2470,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":385,"name":"Micromax Canvas 5","brand":"Micromax","model":"Canvas 5","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.92,"price_usd":85.07} {"index":{"_index":"mobile_phones"}} {"id":386,"name":"Honor 5X","brand":"Honor","model":"5X","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.27,"price_usd":92.58} {"index":{"_index":"mobile_phones"}} {"id":387,"name":"Coolpad Note 3","brand":"Coolpad","model":"Note 3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":388,"name":"HTC One E9s Dual SIM","brand":"HTC","model":"One E9s Dual SIM","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":389,"name":"Yu Yunique","brand":"Yu","model":"nique","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.66,"price_usd":58.74} {"index":{"_index":"mobile_phones"}} {"id":390,"name":"Sony Xperia Z5 Dual","brand":"Sony","model":"Xperia Z5 Dual","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":486.5,"price_usd":575.49} {"index":{"_index":"mobile_phones"}} {"id":391,"name":"Acer Liquid Z630s","brand":"Acer","model":"Liquid Z630s","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":76.04,"price_usd":89.95} {"index":{"_index":"mobile_phones"}} {"id":392,"name":"Xiaomi Redmi 2 Prime","brand":"Xiaomi","model":"Redmi 2 Prime","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":393,"name":"Asus ZenFone Max","brand":"Asus","model":"ZenFone Max","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":394,"name":"Asus ZenFone 2 Deluxe","brand":"Asus","model":"ZenFone 2 Deluxe","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":395,"name":"Gionee Marathon M4","brand":"Gionee","model":"Marathon M4","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":396,"name":"Asus ZenFone 2 Laser (ZE550KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE550KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":397,"name":"Motorola Moto X Style","brand":"Motorola","model":"Moto X Style","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":398,"name":"InFocus M812","brand":"InFocus","model":"M812","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":83.72,"price_usd":99.04} {"index":{"_index":"mobile_phones"}} {"id":399,"name":"Xolo Black","brand":"Xolo","model":"Black","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.24,"price_usd":149.33} {"index":{"_index":"mobile_phones"}} {"id":400,"name":"Phicomm Passion 660","brand":"Phicomm","model":"Passion 660","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.25,"price_usd":40.51} {"index":{"_index":"mobile_phones"}} {"id":401,"name":"Coolpad Dazen X7","brand":"Coolpad","model":"Dazen X7","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":402,"name":"Yu Yuphoria","brand":"Yu","model":"phoria","battery_capacity_mAh":2230,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":403,"name":"Honor 4C","brand":"Honor","model":"4C","battery_capacity_mAh":2550,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":404,"name":"Lenovo A6000 Plus","brand":"Lenovo","model":"A6000 Plus","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":67.68,"price_usd":80.06} {"index":{"_index":"mobile_phones"}} {"id":405,"name":"Lenovo A7000","brand":"Lenovo","model":"A7000","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":70.5,"price_usd":83.4} {"index":{"_index":"mobile_phones"}} {"id":406,"name":"Motorola Moto E (Gen 2)","brand":"Motorola","model":"Moto E (Gen 2)","battery_capacity_mAh":2390,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":407,"name":"HTC Desire 526G+ Dual SIM","brand":"HTC","model":"Desire 526G+ Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":95.19,"price_usd":112.6} {"index":{"_index":"mobile_phones"}} {"id":408,"name":"Lenovo A6000","brand":"Lenovo","model":"A6000","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.88,"price_usd":62.55} {"index":{"_index":"mobile_phones"}} {"id":409,"name":"Asus ZenFone Zoom","brand":"Asus","model":"ZenFone Zoom","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":410,"name":"Xiaomi Redmi 2","brand":"Xiaomi","model":"Redmi 2","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":411,"name":"Lava Iris Fuel 60","brand":"Lava","model":"Iris Fuel 60","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":10,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":412,"name":"Vivo Y15","brand":"Vivo","model":"Y15","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":69.16,"price_usd":81.81} {"index":{"_index":"mobile_phones"}} {"id":413,"name":"Micromax Canvas Selfie","brand":"Micromax","model":"Canvas Selfie","battery_capacity_mAh":2300,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":146.96,"price_usd":173.84} {"index":{"_index":"mobile_phones"}} {"id":414,"name":"Honor 4X","brand":"Honor","model":"4X","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":415,"name":"Xolo Q2100","brand":"Xolo","model":"Q2100","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":416,"name":"Micromax Canvas 4 Plus","brand":"Micromax","model":"Canvas 4 Plus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":417,"name":"Micromax Canvas A1","brand":"Micromax","model":"Canvas A1","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":50.71,"price_usd":59.99} {"index":{"_index":"mobile_phones"}} {"id":418,"name":"Karbonn Sparkle V","brand":"Karbonn","model":"Sparkle V","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":30.66,"price_usd":36.27} {"index":{"_index":"mobile_phones"}} {"id":419,"name":"Spice Dream Uno","brand":"Spice","model":"Dream Uno","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":420,"name":"Micromax Canvas Nitro","brand":"Micromax","model":"Canvas Nitro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":421,"name":"Nokia Lumia 830","brand":"Nokia","model":"Lumia 830","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":10,"front_camera":0.9,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":422,"name":"HTC Desire 820","brand":"HTC","model":"Desire 820","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":423,"name":"Samsung Galaxy Alpha","brand":"Samsung","model":"Galaxy Alpha","battery_capacity_mAh":1860,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":2.1,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":424,"name":"Xolo 8X-1000","brand":"Xolo","model":"8X-1000","battery_capacity_mAh":1920,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":425,"name":"Spice Stellar 520","brand":"Spice","model":"Stellar 520","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":426,"name":"Xiaomi Redmi 1S","brand":"Xiaomi","model":"Redmi 1S","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":427,"name":"Honor 6","brand":"Honor","model":"6","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":428,"name":"Oppo N1 Mini","brand":"Oppo","model":"N1 Mini","battery_capacity_mAh":2140,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":429,"name":"Xolo Q1200","brand":"Xolo","model":"Q1200","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":144.55,"price_usd":170.99} {"index":{"_index":"mobile_phones"}} {"id":430,"name":"Panasonic P81","brand":"Panasonic","model":"P81","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":125.86,"price_usd":148.88} {"index":{"_index":"mobile_phones"}} {"id":431,"name":"Motorola Moto E","brand":"Motorola","model":"Moto E","battery_capacity_mAh":1980,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":432,"name":"Oppo R1","brand":"Oppo","model":"R1","battery_capacity_mAh":2410,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":124.11,"price_usd":146.82} {"index":{"_index":"mobile_phones"}} {"id":433,"name":"Xolo Q1010i","brand":"Xolo","model":"Q1010i","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":143.9,"price_usd":170.22} {"index":{"_index":"mobile_phones"}} {"id":434,"name":"Micromax Canvas Knight","brand":"Micromax","model":"Canvas Knight","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":435,"name":"HTC Desire 816","brand":"HTC","model":"Desire 816","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":289.69,"price_usd":342.67} {"index":{"_index":"mobile_phones"}} {"id":436,"name":"Nokia X Dual SIM","brand":"Nokia","model":"X Dual SIM","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":437,"name":"Lenovo S660","brand":"Lenovo","model":"S660","battery_capacity_mAh":3000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":70.86,"price_usd":83.82} {"index":{"_index":"mobile_phones"}} {"id":438,"name":"Gionee Elife S5.5","brand":"Gionee","model":"Elife S5.5","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":439,"name":"LG G Pro 2","brand":"LG","model":"G Pro 2","battery_capacity_mAh":3200,"screen_size_inches":5.9,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2.1,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":444.43,"price_usd":525.72} {"index":{"_index":"mobile_phones"}} {"id":440,"name":"Xolo Q1100","brand":"Xolo","model":"Q1100","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":144.65,"price_usd":171.11} {"index":{"_index":"mobile_phones"}} {"id":441,"name":"Samsung Galaxy Note 3 Neo","brand":"Samsung","model":"Galaxy Note 3 Neo","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":118.98,"price_usd":140.75} {"index":{"_index":"mobile_phones"}} {"id":442,"name":"Asus ZenFone 6","brand":"Asus","model":"ZenFone 6","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":94.03,"price_usd":111.23} {"index":{"_index":"mobile_phones"}} {"id":443,"name":"Nokia Asha 502","brand":"Nokia","model":"Asha 502","battery_capacity_mAh":1010,"screen_size_inches":3,"touchscreen":"Yes","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":64,"internal_storage_GB":0.064,"rear_camera":5,"front_camera":0,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":444,"name":"Nokia Lumia 1020","brand":"Nokia","model":"Lumia 1020","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":41,"front_camera":1.2,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":445,"name":"Spice Pinnacle FHD","brand":"Spice","model":"Pinnacle FHD","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":446,"name":"Gionee Elife E6","brand":"Gionee","model":"Elife E6","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":226.86,"price_usd":268.36} {"index":{"_index":"mobile_phones"}} {"id":447,"name":"Micromax Canvas 4","brand":"Micromax","model":"Canvas 4","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":448,"name":"Lava Iris 504q","brand":"Lava","model":"Iris 504q","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":449,"name":"BlackBerry Q5","brand":"BlackBerry","model":"Q5","battery_capacity_mAh":2180,"screen_size_inches":3.1,"touchscreen":"Yes","resolution_x":720,"resolution_y":720,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":114.23,"price_usd":135.12} {"index":{"_index":"mobile_phones"}} {"id":450,"name":"BlackBerry Q10","brand":"BlackBerry","model":"Q10","battery_capacity_mAh":2100,"screen_size_inches":3.1,"touchscreen":"Yes","resolution_x":720,"resolution_y":720,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":104.7,"price_usd":123.85} {"index":{"_index":"mobile_phones"}} {"id":451,"name":"Lenovo P780","brand":"Lenovo","model":"P780","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":162.98,"price_usd":192.79} {"index":{"_index":"mobile_phones"}} {"id":452,"name":"Sony Xperia U","brand":"Sony","model":"Xperia U","battery_capacity_mAh":1320,"screen_size_inches":3.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":453,"name":"Sony Xperia SP","brand":"Sony","model":"Xperia SP","battery_capacity_mAh":2370,"screen_size_inches":4.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":227.29,"price_usd":268.86} {"index":{"_index":"mobile_phones"}} {"id":454,"name":"Samsung Galaxy Y Pro Duos","brand":"Samsung","model":"Galaxy Y Pro Duos","battery_capacity_mAh":1350,"screen_size_inches":2.6,"touchscreen":"Yes","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":384,"internal_storage_GB":0.16,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.75,"price_usd":69.5} {"index":{"_index":"mobile_phones"}} {"id":455,"name":"Samsung Galaxy Mega 5.8","brand":"Samsung","model":"Galaxy Mega 5.8","battery_capacity_mAh":2600,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":456,"name":"Nokia Lumia 620","brand":"Nokia","model":"Lumia 620","battery_capacity_mAh":1300,"screen_size_inches":3.8,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":457,"name":"Nokia Lumia 820","brand":"Nokia","model":"Lumia 820","battery_capacity_mAh":1650,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":207.93,"price_usd":245.97} {"index":{"_index":"mobile_phones"}} {"id":458,"name":"LG Optimus G","brand":"LG","model":"Optimus G","battery_capacity_mAh":2100,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":768,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":459,"name":"HTC One S","brand":"HTC","model":"One S","battery_capacity_mAh":1650,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":181.62,"price_usd":214.84} {"index":{"_index":"mobile_phones"}} {"id":460,"name":"BlackBerry Z10","brand":"BlackBerry","model":"Z10","battery_capacity_mAh":1800,"screen_size_inches":4.2,"touchscreen":"Yes","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":58.17,"price_usd":68.81} {"index":{"_index":"mobile_phones"}} {"id":461,"name":"Infinix S5 Lite","brand":"Infinix","model":"S5 Lite","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":462,"name":"Infinix S5","brand":"Infinix","model":"S5","battery_capacity_mAh":4000,"screen_size_inches":6.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":463,"name":"Moto E6s","brand":"Motorola","model":"Moto E6s","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":464,"name":"Tecno Camon i4","brand":"Tecno","model":"Camon i4","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.33,"price_usd":86.74} {"index":{"_index":"mobile_phones"}} {"id":465,"name":"Nokia 4.2","brand":"Nokia","model":"4.2","battery_capacity_mAh":3000,"screen_size_inches":5.71,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":466,"name":"Nokia 3.2","brand":"Nokia","model":"3.2","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":70.76,"price_usd":83.7} {"index":{"_index":"mobile_phones"}} {"id":467,"name":"Samsung Galaxy M10","brand":"Samsung","model":"Galaxy M10","battery_capacity_mAh":3400,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":468,"name":"Micromax Infinity N12","brand":"Micromax","model":"Infinity N12","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":469,"name":"Coolpad Note 8","brand":"Coolpad","model":"Note 8","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":78.61,"price_usd":92.99} {"index":{"_index":"mobile_phones"}} {"id":470,"name":"Samsung Galaxy J6+","brand":"Samsung","model":"Galaxy J6+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":471,"name":"Samsung Galaxy J4+","brand":"Samsung","model":"Galaxy J4+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":472,"name":"Samsung Galaxy J2 Core","brand":"Samsung","model":"Galaxy J2 Core","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.47,"price_usd":77.44} {"index":{"_index":"mobile_phones"}} {"id":473,"name":"10.or D2","brand":"10.or","model":"D2","battery_capacity_mAh":3200,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":474,"name":"Coolpad Mega 5A","brand":"Coolpad","model":"Mega 5A","battery_capacity_mAh":2500,"screen_size_inches":5.47,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":475,"name":"Infinix Smart 2","brand":"Infinix","model":"Smart 2","battery_capacity_mAh":3050,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":476,"name":"Infinix Hot 6 Pro","brand":"Infinix","model":"Hot 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":477,"name":"iVoomi i2 Lite","brand":"iVoomi","model":"i2 Lite","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":478,"name":"Honor 7S","brand":"Honor","model":"7S","battery_capacity_mAh":3020,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":479,"name":"Coolpad Note 6","brand":"Coolpad","model":"Note 6","battery_capacity_mAh":4070,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":480,"name":"Panasonic Eluga Ray 550","brand":"Panasonic","model":"Eluga Ray 550","battery_capacity_mAh":3250,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":60.38,"price_usd":71.42} {"index":{"_index":"mobile_phones"}} {"id":481,"name":"Nokia 1","brand":"Nokia","model":"1","battery_capacity_mAh":2150,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.41,"price_usd":58.45} {"index":{"_index":"mobile_phones"}} {"id":482,"name":"Tecno Camon i","brand":"Tecno","model":"Camon i","battery_capacity_mAh":3050,"screen_size_inches":5.65,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.72,"price_usd":74.19} {"index":{"_index":"mobile_phones"}} {"id":483,"name":"iVoomi i1","brand":"iVoomi","model":"i1","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":640,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.84,"price_usd":53.05} {"index":{"_index":"mobile_phones"}} {"id":484,"name":"Samsung Galaxy On7 Prime","brand":"Samsung","model":"Galaxy On7 Prime","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":485,"name":"Intex Aqua Lions X1+","brand":"Intex","model":"Aqua Lions X1+","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":486,"name":"Kult Gladiator","brand":"Kult","model":"Gladiator","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.97,"price_usd":86.31} {"index":{"_index":"mobile_phones"}} {"id":487,"name":"InFocus Turbo 5 Plus","brand":"InFocus","model":"Turbo 5 Plus","battery_capacity_mAh":4850,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":56.58,"price_usd":66.93} {"index":{"_index":"mobile_phones"}} {"id":488,"name":"Nuu Mobile M3","brand":"Nuu Mobile","model":"M3","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.73,"price_usd":52.91} {"index":{"_index":"mobile_phones"}} {"id":489,"name":"Micromax Canvas Infinity","brand":"Micromax","model":"Canvas Infinity","battery_capacity_mAh":2900,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.79,"price_usd":62.44} {"index":{"_index":"mobile_phones"}} {"id":490,"name":"Lyf C451","brand":"Lyf","model":"C451","battery_capacity_mAh":2800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":491,"name":"Panasonic Eluga A3 Pro","brand":"Panasonic","model":"Eluga A3 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.19,"price_usd":112.6} {"index":{"_index":"mobile_phones"}} {"id":492,"name":"Karbonn K9 Kavach 4G","brand":"Karbonn","model":"K9 Kavach 4G","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":493,"name":"Ziox Astra Titan 4G","brand":"Ziox","model":"Astra Titan 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":494,"name":"InFocus Turbo 5","brand":"InFocus","model":"Turbo 5","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.08,"price_usd":88.82} {"index":{"_index":"mobile_phones"}} {"id":495,"name":"Karbonn Aura Note 2","brand":"Karbonn","model":"Aura Note 2","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.57,"price_usd":77.57} {"index":{"_index":"mobile_phones"}} {"id":496,"name":"Zopo Speed X","brand":"Zopo","model":"Speed X","battery_capacity_mAh":2680,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.25,"price_usd":92.57} {"index":{"_index":"mobile_phones"}} {"id":497,"name":"Intex Elyt e7","brand":"Intex","model":"Elyt e7","battery_capacity_mAh":4020,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":498,"name":"Micromax Canvas 2 (2017)","brand":"Micromax","model":"Canvas 2 (2017)","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":499,"name":"Tecno i7","brand":"Tecno","model":"i7","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.83,"price_usd":112.17} {"index":{"_index":"mobile_phones"}} {"id":500,"name":"Lava Z10","brand":"Lava","model":"Z10","battery_capacity_mAh":2620,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.34,"price_usd":111.6} {"index":{"_index":"mobile_phones"}} {"id":501,"name":"Vivo Y66","brand":"Vivo","model":"Y66","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":502,"name":"Zopo Flash X Plus","brand":"Zopo","model":"Flash X Plus","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":503,"name":"Vivo Y55s","brand":"Vivo","model":"Y55s","battery_capacity_mAh":2730,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":504,"name":"Nokia 3","brand":"Nokia","model":"3","battery_capacity_mAh":2630,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.98,"price_usd":86.33} {"index":{"_index":"mobile_phones"}} {"id":505,"name":"Intex Aqua Supreme+","brand":"Intex","model":"Aqua Supreme+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":506,"name":"ZTE Blade A2 Plus","brand":"ZTE","model":"Blade A2 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":132.19,"price_usd":156.37} {"index":{"_index":"mobile_phones"}} {"id":507,"name":"Panasonic Eluga Prim","brand":"Panasonic","model":"Eluga Prim","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.26,"price_usd":105.59} {"index":{"_index":"mobile_phones"}} {"id":508,"name":"Coolpad Mega 3","brand":"Coolpad","model":"Mega 3","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1080,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":3,"3G":"Yes","4G":"Yes","price_gbp":48.55,"price_usd":57.43} {"index":{"_index":"mobile_phones"}} {"id":509,"name":"Coolpad Mega 2.5D","brand":"Coolpad","model":"Mega 2.5D","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":510,"name":"Gionee S6 Pro","brand":"Gionee","model":"S6 Pro","battery_capacity_mAh":3130,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":511,"name":"Panasonic Eluga Arc","brand":"Panasonic","model":"Eluga Arc","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.81,"price_usd":61.29} {"index":{"_index":"mobile_phones"}} {"id":512,"name":"Vivo V3","brand":"Vivo","model":"V3","battery_capacity_mAh":2550,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.43,"price_usd":187.41} {"index":{"_index":"mobile_phones"}} {"id":513,"name":"Micromax Canvas Spark 3","brand":"Micromax","model":"Canvas Spark 3","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":41.97,"price_usd":49.64} {"index":{"_index":"mobile_phones"}} {"id":514,"name":"InFocus Bingo 21","brand":"InFocus","model":"Bingo 21","battery_capacity_mAh":2300,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":850,"resolution_y":480,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.56,"price_usd":46.79} {"index":{"_index":"mobile_phones"}} {"id":515,"name":"Honor Holly 2 Plus","brand":"Honor","model":"Holly 2 Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":90.49,"price_usd":107.04} {"index":{"_index":"mobile_phones"}} {"id":516,"name":"Karbonn Quattro L50 HD","brand":"Karbonn","model":"Quattro L50 HD","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":517,"name":"Lyf Earth 1","brand":"Lyf","model":"Earth 1","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":518,"name":"Onida i4G1","brand":"Onida","model":"i4G1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"No","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":56.95,"price_usd":67.37} {"index":{"_index":"mobile_phones"}} {"id":519,"name":"HTC One X9","brand":"HTC","model":"One X9","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":156.21,"price_usd":184.79} {"index":{"_index":"mobile_phones"}} {"id":520,"name":"Intex Aqua Ace","brand":"Intex","model":"Aqua Ace","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":521,"name":"Lava Pixel V2","brand":"Lava","model":"Pixel V2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":140.67,"price_usd":166.4} {"index":{"_index":"mobile_phones"}} {"id":522,"name":"Gionee F103","brand":"Gionee","model":"F103","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":107.88,"price_usd":127.61} {"index":{"_index":"mobile_phones"}} {"id":523,"name":"Micromax Canvas Nitro 4G","brand":"Micromax","model":"Canvas Nitro 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":524,"name":"Vivo V1Max","brand":"Vivo","model":"V1Max","battery_capacity_mAh":2720,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.49,"price_usd":162.64} {"index":{"_index":"mobile_phones"}} {"id":525,"name":"Micromax Canvas Selfie 2","brand":"Micromax","model":"Canvas Selfie 2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":526,"name":"Panasonic Eluga Icon","brand":"Panasonic","model":"Eluga Icon","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":527,"name":"Karbonn Titanium Mach Five","brand":"Karbonn","model":"Titanium Mach Five","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":528,"name":"InFocus M370","brand":"InFocus","model":"M370","battery_capacity_mAh":2230,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":529,"name":"Micromax Canvas Xpress 2","brand":"Micromax","model":"Canvas Xpress 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":530,"name":"Lava Pixel V1","brand":"Lava","model":"Pixel V1","battery_capacity_mAh":2650,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":531,"name":"Micromax Canvas Doodle 4","brand":"Micromax","model":"Canvas Doodle 4","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":532,"name":"Sony Xperia Z3+","brand":"Sony","model":"Xperia Z3+","battery_capacity_mAh":2930,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20.7,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":369.28,"price_usd":436.82} {"index":{"_index":"mobile_phones"}} {"id":533,"name":"LG G4 Stylus","brand":"LG","model":"G4 Stylus","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":534,"name":"Intex Cloud N","brand":"Intex","model":"Cloud N","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.02,"price_usd":43.79} {"index":{"_index":"mobile_phones"}} {"id":535,"name":"Micromax Unite 3","brand":"Micromax","model":"Unite 3","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":536,"name":"Micromax Canvas Spark","brand":"Micromax","model":"Canvas Spark","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":537,"name":"Microsoft Lumia 540 Dual SIM","brand":"Microsoft","model":"Lumia 540 Dual SIM","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":538,"name":"HTC One M9+","brand":"HTC","model":"One M9+","battery_capacity_mAh":2840,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":116.34,"price_usd":137.62} {"index":{"_index":"mobile_phones"}} {"id":539,"name":"Intex Aqua Speed HD","brand":"Intex","model":"Aqua Speed HD","battery_capacity_mAh":1700,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":540,"name":"Karbonn Titanium Mach Two S360","brand":"Karbonn","model":"Titanium Mach Two S360","battery_capacity_mAh":1900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":82.5,"price_usd":97.59} {"index":{"_index":"mobile_phones"}} {"id":541,"name":"BlackBerry Leap","brand":"BlackBerry","model":"Leap","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":76.15,"price_usd":90.08} {"index":{"_index":"mobile_phones"}} {"id":542,"name":"Asus ZenFone C (ZC451CG)","brand":"Asus","model":"ZenFone C (ZC451CG)","battery_capacity_mAh":2100,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":543,"name":"Lava Iris X8","brand":"Lava","model":"Iris X8","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":544,"name":"Gionee Pioneer P6","brand":"Gionee","model":"Pioneer P6","battery_capacity_mAh":1950,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":43.89,"price_usd":51.92} {"index":{"_index":"mobile_phones"}} {"id":545,"name":"Karbonn Machone Titanium S310","brand":"Karbonn","model":"Machone Titanium S310","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":546,"name":"Micromax Canvas Hue","brand":"Micromax","model":"Canvas Hue","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":547,"name":"BlackBerry Classic","brand":"BlackBerry","model":"Classic","battery_capacity_mAh":2515,"screen_size_inches":3.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":720,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":147.0,"price_usd":173.89} {"index":{"_index":"mobile_phones"}} {"id":548,"name":"Intex Aqua Power","brand":"Intex","model":"Aqua Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":549,"name":"Gionee Marathon M3","brand":"Gionee","model":"Marathon M3","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":36.91,"price_usd":43.66} {"index":{"_index":"mobile_phones"}} {"id":550,"name":"Honor Holly","brand":"Honor","model":"Holly","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":551,"name":"Gionee Elife S5.1","brand":"Gionee","model":"Elife S5.1","battery_capacity_mAh":2050,"screen_size_inches":4.8,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":552,"name":"HTC Desire 816G","brand":"HTC","model":"Desire 816G","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":232.58,"price_usd":275.12} {"index":{"_index":"mobile_phones"}} {"id":553,"name":"Lenovo Vibe X2","brand":"Lenovo","model":"Vibe X2","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":185.08,"price_usd":218.93} {"index":{"_index":"mobile_phones"}} {"id":554,"name":"ZTE V5","brand":"ZTE","model":"V5","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":555,"name":"Xolo Play 8X-1100","brand":"Xolo","model":"Play 8X-1100","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":62.27,"price_usd":73.66} {"index":{"_index":"mobile_phones"}} {"id":556,"name":"LG G3 Stylus","brand":"LG","model":"G3 Stylus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":110.95,"price_usd":131.24} {"index":{"_index":"mobile_phones"}} {"id":557,"name":"iBall Andi 5K Panther","brand":"iBall","model":"Andi 5K Panther","battery_capacity_mAh":1900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":558,"name":"HTC Desire 616 Dual SIM","brand":"HTC","model":"Desire 616 Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":559,"name":"LG G3 Beat","brand":"LG","model":"G3 Beat","battery_capacity_mAh":2540,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":560,"name":"Xolo Win Q900s","brand":"Xolo","model":"Win Q900s","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":47.54,"price_usd":56.24} {"index":{"_index":"mobile_phones"}} {"id":561,"name":"Sony Xperia T3","brand":"Sony","model":"Xperia T3","battery_capacity_mAh":2500,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.1,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":195.56,"price_usd":231.33} {"index":{"_index":"mobile_phones"}} {"id":562,"name":"Micromax Unite 2","brand":"Micromax","model":"Unite 2","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":563,"name":"Lava Iris X1","brand":"Lava","model":"Iris X1","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":38.41,"price_usd":45.44} {"index":{"_index":"mobile_phones"}} {"id":564,"name":"BlackBerry Z3","brand":"BlackBerry","model":"Z3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.1,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":200.95,"price_usd":237.71} {"index":{"_index":"mobile_phones"}} {"id":565,"name":"Lava Iris Pro 20","brand":"Lava","model":"Iris Pro 20","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":53.31,"price_usd":63.06} {"index":{"_index":"mobile_phones"}} {"id":566,"name":"LG L90 Dual","brand":"LG","model":"L90 Dual","battery_capacity_mAh":2540,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":567,"name":"Karbonn Titanium Octane Plus","brand":"Karbonn","model":"Titanium Octane Plus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":132.14,"price_usd":156.31} {"index":{"_index":"mobile_phones"}} {"id":568,"name":"Lenovo S860","brand":"Lenovo","model":"S860","battery_capacity_mAh":4000,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":198.29,"price_usd":234.56} {"index":{"_index":"mobile_phones"}} {"id":569,"name":"Micromax Canvas Turbo Mini","brand":"Micromax","model":"Canvas Turbo Mini","battery_capacity_mAh":1800,"screen_size_inches":4.69,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":68.69,"price_usd":81.26} {"index":{"_index":"mobile_phones"}} {"id":570,"name":"Intex Aqua Octa","brand":"Intex","model":"Aqua Octa","battery_capacity_mAh":2300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":177.87,"price_usd":210.41} {"index":{"_index":"mobile_phones"}} {"id":571,"name":"Xolo Q3000","brand":"Xolo","model":"Q3000","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":191.84,"price_usd":226.92} {"index":{"_index":"mobile_phones"}} {"id":572,"name":"Gionee Pioneer P3","brand":"Gionee","model":"Pioneer P3","battery_capacity_mAh":1700,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":79.26,"price_usd":93.76} {"index":{"_index":"mobile_phones"}} {"id":573,"name":"Nokia Lumia 525","brand":"Nokia","model":"Lumia 525","battery_capacity_mAh":1430,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":574,"name":"Xolo Q2000","brand":"Xolo","model":"Q2000","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":153.72,"price_usd":181.83} {"index":{"_index":"mobile_phones"}} {"id":575,"name":"Micromax Canvas Turbo","brand":"Micromax","model":"Canvas Turbo","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":184.98,"price_usd":218.82} {"index":{"_index":"mobile_phones"}} {"id":576,"name":"Nokia Lumia 1320","brand":"Nokia","model":"Lumia 1320","battery_capacity_mAh":3400,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.34,"price_usd":124.61} {"index":{"_index":"mobile_phones"}} {"id":577,"name":"LG G Pro Lite","brand":"LG","model":"G Pro Lite","battery_capacity_mAh":3140,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":578,"name":"BlackBerry Z30","brand":"BlackBerry","model":"Z30","battery_capacity_mAh":2880,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":87.78,"price_usd":103.84} {"index":{"_index":"mobile_phones"}} {"id":579,"name":"HTC Desire 500","brand":"HTC","model":"Desire 500","battery_capacity_mAh":1800,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":200.95,"price_usd":237.71} {"index":{"_index":"mobile_phones"}} {"id":580,"name":"Nokia Lumia 625","brand":"Nokia","model":"Lumia 625","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":581,"name":"Xolo Play T1000","brand":"Xolo","model":"Play T1000","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":149.69,"price_usd":177.07} {"index":{"_index":"mobile_phones"}} {"id":582,"name":"Gionee Elife E3","brand":"Gionee","model":"Elife E3","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":583,"name":"Samsung Galaxy S4 Zoom","brand":"Samsung","model":"Galaxy S4 Zoom","battery_capacity_mAh":2330,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":560,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":16,"front_camera":1.9,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":584,"name":"HTC Desire 600","brand":"HTC","model":"Desire 600","battery_capacity_mAh":1860,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":237.97,"price_usd":281.5} {"index":{"_index":"mobile_phones"}} {"id":585,"name":"Samsung Galaxy Pocket","brand":"Samsung","model":"Galaxy Pocket","battery_capacity_mAh":1200,"screen_size_inches":2.8,"touchscreen":"Yes","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":289,"internal_storage_GB":3,"rear_camera":2,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":33.74,"price_usd":39.91} {"index":{"_index":"mobile_phones"}} {"id":586,"name":"Samsung Galaxy Grand Duos","brand":"Samsung","model":"Galaxy Grand Duos","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":587,"name":"Nokia Asha 501","brand":"Nokia","model":"Asha 501","battery_capacity_mAh":1200,"screen_size_inches":3,"touchscreen":"Yes","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":64,"internal_storage_GB":0.128,"rear_camera":3.2,"front_camera":0,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":588,"name":"Nokia Lumia 610","brand":"Nokia","model":"Lumia 610","battery_capacity_mAh":1300,"screen_size_inches":3.7,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":589,"name":"Nokia Lumia 520","brand":"Nokia","model":"Lumia 520","battery_capacity_mAh":1430,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":40.72,"price_usd":48.17} {"index":{"_index":"mobile_phones"}} {"id":590,"name":"LG Optimus L3 II Dual","brand":"LG","model":"Optimus L3 II Dual","battery_capacity_mAh":1540,"screen_size_inches":3.2,"touchscreen":"Yes","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":591,"name":"BlackBerry Curve 9220","brand":"BlackBerry","model":"Curve 9220","battery_capacity_mAh":1450,"screen_size_inches":2.44,"touchscreen":"No","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":512,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":592,"name":"Coolpad Cool 5","brand":"Coolpad","model":"Cool 5","battery_capacity_mAh":4000,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":593,"name":"Innelo 1","brand":"iVoomi","model":"Innelo 1","battery_capacity_mAh":3000,"screen_size_inches":5.86,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":594,"name":"Mobiistar XQ Dual","brand":"Mobiistar","model":"XQ Dual","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":595,"name":"Comio X1 Note","brand":"Comio","model":"X1 Note","battery_capacity_mAh":2900,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.63,"price_usd":78.82} {"index":{"_index":"mobile_phones"}} {"id":596,"name":"Intex Aqua Lions N1","brand":"Intex","model":"Aqua Lions N1","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":27.39,"price_usd":32.4} {"index":{"_index":"mobile_phones"}} {"id":597,"name":"Karbonn A40 Indian","brand":"Karbonn","model":"A40 Indian","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.37,"price_usd":40.66} {"index":{"_index":"mobile_phones"}} {"id":598,"name":"Videocon Metal Pro 2","brand":"Videocon","model":"Metal Pro 2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":599,"name":"iVoomi Me 1+","brand":"iVoomi","model":"Me 1+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":600,"name":"iVoomi Me 1","brand":"iVoomi","model":"Me 1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":601,"name":"Asus ZenFone Live","brand":"Asus","model":"ZenFone Live","battery_capacity_mAh":2650,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":602,"name":"Intex Aqua Crystal","brand":"Intex","model":"Aqua Crystal","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":603,"name":"Alcatel Pixi 4 (5)","brand":"Alcatel","model":"Pixi 4 (5)","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":604,"name":"Reach Allure","brand":"Reach","model":"Allure","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":10,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":605,"name":"Karbonn Quattro L52","brand":"Karbonn","model":"Quattro L52","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":91.48,"price_usd":108.21} {"index":{"_index":"mobile_phones"}} {"id":606,"name":"InFocus Bingo 10","brand":"InFocus","model":"Bingo 10","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":607,"name":"HTC Desire 626 Dual SIM","brand":"HTC","model":"Desire 626 Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":608,"name":"Intex Aqua Trend","brand":"Intex","model":"Aqua Trend","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.0,"price_usd":55.6} {"index":{"_index":"mobile_phones"}} {"id":609,"name":"HTC Desire 310","brand":"HTC","model":"Desire 310","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":610,"name":"Xolo Q1000 Opus","brand":"Xolo","model":"Q1000 Opus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":611,"name":"BlackBerry 9720","brand":"BlackBerry","model":"9720","battery_capacity_mAh":1450,"screen_size_inches":2.8,"touchscreen":"Yes","resolution_x":360,"resolution_y":480,"processor":1,"ram_memory_mb":512,"internal_storage_GB":0.512,"rear_camera":5,"front_camera":0,"operating_system":"BlackBerry","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":612,"name":"Zen Cinemax 3","brand":"Zen","model":"Cinemax 3","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":613,"name":"Samsung Galaxy S20+","brand":"Samsung","model":"Galaxy S20+","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":782.64,"price_usd":925.8} {"index":{"_index":"mobile_phones"}} {"id":614,"name":"Samsung Galaxy S20 Ultra","brand":"Samsung","model":"Galaxy S20 Ultra","battery_capacity_mAh":5000,"screen_size_inches":6.9,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":128,"rear_camera":108,"front_camera":40,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":983.6,"price_usd":1163.51} {"index":{"_index":"mobile_phones"}} {"id":615,"name":"Redmi 8A Dual","brand":"Xiaomi","model":"Redmi 8A Dual","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":616,"name":"Lava Z53","brand":"Lava","model":"Z53","battery_capacity_mAh":4120,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":600,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.07,"price_usd":60.42} {"index":{"_index":"mobile_phones"}} {"id":617,"name":"Samsung Galaxy Z Flip","brand":"Samsung","model":"Galaxy Z Flip","battery_capacity_mAh":3300,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2636,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":1850.77,"price_usd":2189.29} {"index":{"_index":"mobile_phones"}} {"id":618,"name":"Samsung Galaxy S20","brand":"Samsung","model":"Galaxy S20","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":708.61,"price_usd":838.22} {"index":{"_index":"mobile_phones"}} {"id":619,"name":"Lava Z71","brand":"Lava","model":"Z71","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":620,"name":"Nokia 2.3","brand":"Nokia","model":"2.3","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.61,"price_usd":89.44} {"index":{"_index":"mobile_phones"}} {"id":621,"name":"Tecno Spark Power","brand":"Tecno","model":"Spark Power","battery_capacity_mAh":6000,"screen_size_inches":6.35,"touchscreen":"Yes","resolution_x":720,"resolution_y":1548,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":622,"name":"Vivo Y19","brand":"Vivo","model":"Y19","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":623,"name":"Lava Z41","brand":"Lava","model":"Z41","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":624,"name":"Tecno Camon 12 Air","brand":"Tecno","model":"Camon 12 Air","battery_capacity_mAh":4000,"screen_size_inches":6.55,"touchscreen":"Yes","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.34,"price_usd":124.61} {"index":{"_index":"mobile_phones"}} {"id":625,"name":"Micromax iOne Note","brand":"Micromax","model":"iOne Note","battery_capacity_mAh":3950,"screen_size_inches":6.09,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":70.8,"price_usd":83.75} {"index":{"_index":"mobile_phones"}} {"id":626,"name":"Google Pixel 4 XL","brand":"Google","model":"Pixel 4 XL","battery_capacity_mAh":3700,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3040,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":887.36,"price_usd":1049.67} {"index":{"_index":"mobile_phones"}} {"id":627,"name":"Google Pixel 4","brand":"Google","model":"Pixel 4","battery_capacity_mAh":2800,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":735.06,"price_usd":869.51} {"index":{"_index":"mobile_phones"}} {"id":628,"name":"Lenovo K10 Plus","brand":"Lenovo","model":"K10 Plus","battery_capacity_mAh":4050,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":629,"name":"Samsung Galaxy A70s","brand":"Samsung","model":"Galaxy A70s","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":64,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":630,"name":"iPhone 11 Pro","brand":"Apple","model":"iPhone 11 Pro","battery_capacity_mAh":3046,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":1024.85,"price_usd":1212.31} {"index":{"_index":"mobile_phones"}} {"id":631,"name":"Samsung Galaxy A20s","brand":"Samsung","model":"Galaxy A20s","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":632,"name":"Oppo Reno 2F","brand":"Oppo","model":"Reno 2F","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":221.05,"price_usd":261.48} {"index":{"_index":"mobile_phones"}} {"id":633,"name":"Samsung Galaxy A30s","brand":"Samsung","model":"Galaxy A30s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":25,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.86,"price_usd":174.9} {"index":{"_index":"mobile_phones"}} {"id":634,"name":"Lava Z93","brand":"Lava","model":"Z93","battery_capacity_mAh":3500,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":85.66,"price_usd":101.33} {"index":{"_index":"mobile_phones"}} {"id":635,"name":"HTC Wildfire X","brand":"HTC","model":"Wildfire X","battery_capacity_mAh":3300,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":636,"name":"Samsung Galaxy A10s","brand":"Samsung","model":"Galaxy A10s","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":637,"name":"Huawei Mate 30 Pro","brand":"Huawei","model":"Mate 30 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.53,"touchscreen":"Yes","resolution_x":1176,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":40,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":817.55,"price_usd":967.08} {"index":{"_index":"mobile_phones"}} {"id":638,"name":"Samsung Galaxy Note 10","brand":"Samsung","model":"Galaxy Note 10","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":639,"name":"Tecno Phantom 9","brand":"Tecno","model":"Phantom 9","battery_capacity_mAh":3500,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":640,"name":"LG W30 Pro","brand":"LG","model":"W30 Pro","battery_capacity_mAh":4050,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":131.99,"price_usd":156.14} {"index":{"_index":"mobile_phones"}} {"id":641,"name":"Vivo Y12","brand":"Vivo","model":"Y12","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"Yes","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":101.0,"price_usd":119.48} {"index":{"_index":"mobile_phones"}} {"id":642,"name":"Itel A46","brand":"Itel","model":"A46","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"No","bluetooth":"No","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":47.07,"price_usd":55.67} {"index":{"_index":"mobile_phones"}} {"id":643,"name":"Huawei Y9 Prime 2019","brand":"Huawei","model":"Y9 Prime 2019","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":152.83,"price_usd":180.78} {"index":{"_index":"mobile_phones"}} {"id":644,"name":"Samsung Galaxy A80","brand":"Samsung","model":"Galaxy A80","battery_capacity_mAh":3700,"screen_size_inches":6.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":380.65,"price_usd":450.27} {"index":{"_index":"mobile_phones"}} {"id":645,"name":"Oppo Reno","brand":"Oppo","model":"Reno","battery_capacity_mAh":3765,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":285.46,"price_usd":337.67} {"index":{"_index":"mobile_phones"}} {"id":646,"name":"Samsung Galaxy A2 Core","brand":"Samsung","model":"Galaxy A2 Core","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":55.95,"price_usd":66.18} {"index":{"_index":"mobile_phones"}} {"id":647,"name":"Samsung Galaxy A20","brand":"Samsung","model":"Galaxy A20","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":104.71,"price_usd":123.86} {"index":{"_index":"mobile_phones"}} {"id":648,"name":"Vivo Y91i","brand":"Vivo","model":"Y91i","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":649,"name":"Panasonic Eluga Ray 800","brand":"Panasonic","model":"Eluga Ray 800","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.62,"price_usd":81.17} {"index":{"_index":"mobile_phones"}} {"id":650,"name":"Lava Z40","brand":"Lava","model":"Z40","battery_capacity_mAh":2250,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":400,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":651,"name":"Samsung Galaxy Fold","brand":"Samsung","model":"Galaxy Fold","battery_capacity_mAh":4380,"screen_size_inches":7.3,"touchscreen":"Yes","resolution_x":1536,"resolution_y":2152,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":512,"rear_camera":16,"front_camera":10,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":1745.1,"price_usd":2064.29} {"index":{"_index":"mobile_phones"}} {"id":652,"name":"Gionee F205 Pro","brand":"Gionee","model":"F205 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":47.47,"price_usd":56.15} {"index":{"_index":"mobile_phones"}} {"id":653,"name":"Tecno Camon iAce 2X","brand":"Tecno","model":"Camon iAce 2X","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":654,"name":"Tecno Camon iAce 2","brand":"Tecno","model":"Camon iAce 2","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":655,"name":"Coolpad Cool 3","brand":"Coolpad","model":"Cool 3","battery_capacity_mAh":3000,"screen_size_inches":5.71,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":49.17,"price_usd":58.16} {"index":{"_index":"mobile_phones"}} {"id":656,"name":"Vivo Y91","brand":"Vivo","model":"Y91","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":88.3,"price_usd":104.45} {"index":{"_index":"mobile_phones"}} {"id":657,"name":"Itel A44 Air","brand":"Itel","model":"A44 Air","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.67,"price_usd":46.93} {"index":{"_index":"mobile_phones"}} {"id":658,"name":"Oppo R15 Pro","brand":"Oppo","model":"R15 Pro","battery_capacity_mAh":3400,"screen_size_inches":6.28,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":20,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":151.23,"price_usd":178.89} {"index":{"_index":"mobile_phones"}} {"id":659,"name":"10.or G2","brand":"10.or","model":"G2","battery_capacity_mAh":5000,"screen_size_inches":6.18,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":660,"name":"Xolo Era 4X","brand":"Xolo","model":"Era 4X","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":661,"name":"Micromax Infinity N11","brand":"Micromax","model":"Infinity N11","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":662,"name":"Tambo TA-3","brand":"Tambo","model":"TA-3","battery_capacity_mAh":2100,"screen_size_inches":4.95,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.08,"price_usd":47.42} {"index":{"_index":"mobile_phones"}} {"id":663,"name":"Tambo TA-2","brand":"Tambo","model":"TA-2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":35.96,"price_usd":42.54} {"index":{"_index":"mobile_phones"}} {"id":664,"name":"Meizu M6T","brand":"Meizu","model":"M6T","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":665,"name":"Meizu C9","brand":"Meizu","model":"C9","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.43,"price_usd":44.28} {"index":{"_index":"mobile_phones"}} {"id":666,"name":"Motorola Moto G7 Power","brand":"Motorola","model":"Moto G7 Power","battery_capacity_mAh":5000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":114.97,"price_usd":135.99} {"index":{"_index":"mobile_phones"}} {"id":667,"name":"Motorola Moto G7","brand":"Motorola","model":"Moto G7","battery_capacity_mAh":3000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2270,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.78,"price_usd":112.11} {"index":{"_index":"mobile_phones"}} {"id":668,"name":"Itel A44 Power","brand":"Itel","model":"A44 Power","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":669,"name":"Vivo Y95","brand":"Vivo","model":"Y95","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":670,"name":"Lava Z81","brand":"Lava","model":"Z81","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":671,"name":"Vivo Y93","brand":"Vivo","model":"Y93","battery_capacity_mAh":4030,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1580,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":105.24,"price_usd":124.48} {"index":{"_index":"mobile_phones"}} {"id":672,"name":"Micromax Bharat 5 Infinity Edition","brand":"Micromax","model":"Bharat 5 Infinity Edition","battery_capacity_mAh":5000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":673,"name":"Micromax Spark Go","brand":"Micromax","model":"Spark Go","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":32.78,"price_usd":38.77} {"index":{"_index":"mobile_phones"}} {"id":674,"name":"Panasonic Eluga Z1 Pro","brand":"Panasonic","model":"Eluga Z1 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":675,"name":"Panasonic Eluga Z1","brand":"Panasonic","model":"Eluga Z1","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":676,"name":"Panasonic Eluga Ray 530","brand":"Panasonic","model":"Eluga Ray 530","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":677,"name":"Razer Phone 2","brand":"Razer","model":"Phone 2","battery_capacity_mAh":4000,"screen_size_inches":5.72,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":581.6,"price_usd":687.98} {"index":{"_index":"mobile_phones"}} {"id":678,"name":"iVoomi Z1","brand":"iVoomi","model":"Z1","battery_capacity_mAh":2800,"screen_size_inches":5.67,"touchscreen":"Yes","resolution_x":720,"resolution_y":1498,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":679,"name":"Panasonic Eluga X1","brand":"Panasonic","model":"Eluga X1","battery_capacity_mAh":3000,"screen_size_inches":6.18,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":94.12,"price_usd":111.33} {"index":{"_index":"mobile_phones"}} {"id":680,"name":"Intex Staari 11","brand":"Intex","model":"Staari 11","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":681,"name":"iVoomi iPro","brand":"iVoomi","model":"iPro","battery_capacity_mAh":2000,"screen_size_inches":4.95,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":682,"name":"Vivo V11","brand":"Vivo","model":"V11","battery_capacity_mAh":3315,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":150.49,"price_usd":178.02} {"index":{"_index":"mobile_phones"}} {"id":683,"name":"Motorola One","brand":"Motorola","model":"One","battery_capacity_mAh":3000,"screen_size_inches":5.9,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":684,"name":"HTC U12 Life","brand":"HTC","model":"U12 Life","battery_capacity_mAh":3600,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":685,"name":"Yu Ace","brand":"Yu","model":"Ace","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":686,"name":"Homtom H5","brand":"Homtom","model":"H5","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.19,"price_usd":60.55} {"index":{"_index":"mobile_phones"}} {"id":687,"name":"Homtom H3","brand":"Homtom","model":"H3","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":688,"name":"Homtom H1","brand":"Homtom","model":"H1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":640,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.65,"price_usd":46.9} {"index":{"_index":"mobile_phones"}} {"id":689,"name":"Lava Z60s","brand":"Lava","model":"Z60s","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1080,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":690,"name":"Itel A22 Pro","brand":"Itel","model":"A22 Pro","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.01,"price_usd":54.42} {"index":{"_index":"mobile_phones"}} {"id":691,"name":"Itel A45","brand":"Itel","model":"A45","battery_capacity_mAh":2700,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":692,"name":"Samsung Galaxy A8 Star","brand":"Samsung","model":"Galaxy A8 Star","battery_capacity_mAh":3700,"screen_size_inches":6.28,"touchscreen":"Yes","resolution_x":1880,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":219.99,"price_usd":260.23} {"index":{"_index":"mobile_phones"}} {"id":693,"name":"Vivo Y83 Pro","brand":"Vivo","model":"Y83 Pro","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":147.54,"price_usd":174.53} {"index":{"_index":"mobile_phones"}} {"id":694,"name":"Tecno Camon iSky 2","brand":"Tecno","model":"Camon iSky 2","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":695,"name":"Tecno Camon iACE","brand":"Tecno","model":"Camon iACE","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":696,"name":"Oppo R17","brand":"Oppo","model":"R17","battery_capacity_mAh":3500,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":697,"name":"Meizu 16","brand":"Meizu","model":"16","battery_capacity_mAh":3010,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":206.13,"price_usd":243.84} {"index":{"_index":"mobile_phones"}} {"id":698,"name":"BlackBerry Evolve","brand":"BlackBerry","model":"Evolve","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":699,"name":"Samsung Galaxy On8 (2018)","brand":"Samsung","model":"Galaxy On8 (2018)","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":700,"name":"Tecno Camon iTwin","brand":"Tecno","model":"Camon iTwin","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":701,"name":"Vivo Y71i","brand":"Vivo","model":"Y71i","battery_capacity_mAh":3285,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"No","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":702,"name":"Alcatel 5V","brand":"Alcatel","model":"5V","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":703,"name":"Intex Infie 33","brand":"Intex","model":"Infie 33","battery_capacity_mAh":3000,"screen_size_inches":5.34,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":704,"name":"Intex Infie 3","brand":"Intex","model":"Infie 3","battery_capacity_mAh":2000,"screen_size_inches":4.95,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":36.49,"price_usd":43.16} {"index":{"_index":"mobile_phones"}} {"id":705,"name":"Oppo A3s","brand":"Oppo","model":"A3s","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":706,"name":"Oppo A5","brand":"Oppo","model":"A5","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":707,"name":"Vivo Z10","brand":"Vivo","model":"Z10","battery_capacity_mAh":3225,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":708,"name":"Samsung Galaxy On6","brand":"Samsung","model":"Galaxy On6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":186.14,"price_usd":220.19} {"index":{"_index":"mobile_phones"}} {"id":709,"name":"Alcatel 1","brand":"Alcatel","model":"1","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":710,"name":"Vivo Y81","brand":"Vivo","model":"Y81","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":103.54,"price_usd":122.48} {"index":{"_index":"mobile_phones"}} {"id":711,"name":"Panasonic P90","brand":"Panasonic","model":"P90","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":712,"name":"Lephone Dazen 6A","brand":"Lephone","model":"Dazen 6A","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":83.55,"price_usd":98.84} {"index":{"_index":"mobile_phones"}} {"id":713,"name":"Comio C1 Pro","brand":"Comio","model":"C1 Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":714,"name":"iVoomi V5","brand":"iVoomi","model":"V5","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":715,"name":"LG Q Stylus+","brand":"LG","model":"Q Stylus+","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":716,"name":"LG Q Stylus","brand":"LG","model":"Q Stylus","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":717,"name":"Lenovo A5","brand":"Lenovo","model":"A5","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":56.05,"price_usd":66.31} {"index":{"_index":"mobile_phones"}} {"id":718,"name":"Nokia 3.1","brand":"Nokia","model":"3.1","battery_capacity_mAh":2990,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":63.4,"price_usd":74.99} {"index":{"_index":"mobile_phones"}} {"id":719,"name":"Aqua Jazz","brand":"Aqua","model":"Jazz","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":720,"name":"Vivo Y83","brand":"Vivo","model":"Y83","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"Yes","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":109.98,"price_usd":130.1} {"index":{"_index":"mobile_phones"}} {"id":721,"name":"BlackBerry KEY2","brand":"BlackBerry","model":"KEY2","battery_capacity_mAh":3500,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1620,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.46,"price_usd":250.14} {"index":{"_index":"mobile_phones"}} {"id":722,"name":"Mobiistar CQ","brand":"Mobiistar","model":"CQ","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.42,"price_usd":53.72} {"index":{"_index":"mobile_phones"}} {"id":723,"name":"Micromax Bharat Go","brand":"Micromax","model":"Bharat Go","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.07,"price_usd":47.4} {"index":{"_index":"mobile_phones"}} {"id":724,"name":"iVoomi i2","brand":"iVoomi","model":"i2","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":725,"name":"LG Q7+","brand":"LG","model":"Q7+","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":125.32,"price_usd":148.24} {"index":{"_index":"mobile_phones"}} {"id":726,"name":"LG Q7","brand":"LG","model":"Q7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":93.87,"price_usd":111.03} {"index":{"_index":"mobile_phones"}} {"id":727,"name":"HTC U12+","brand":"HTC","model":"U12+","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":793.13,"price_usd":938.2} {"index":{"_index":"mobile_phones"}} {"id":728,"name":"Nokia X6","brand":"Nokia","model":"X6","battery_capacity_mAh":3060,"screen_size_inches":5.8,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":729,"name":"Kult Impulse","brand":"Kult","model":"Impulse","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":46.3,"price_usd":54.77} {"index":{"_index":"mobile_phones"}} {"id":730,"name":"Samsung Galaxy J4","brand":"Samsung","model":"Galaxy J4","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.23,"price_usd":86.63} {"index":{"_index":"mobile_phones"}} {"id":731,"name":"Karbonn Frames S9","brand":"Karbonn","model":"Frames S9","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":732,"name":"Intex Staari 10","brand":"Intex","model":"Staari 10","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":733,"name":"Panasonic P95","brand":"Panasonic","model":"P95","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":38.87,"price_usd":45.98} {"index":{"_index":"mobile_phones"}} {"id":734,"name":"LG G7 ThinQ","brand":"LG","model":"G7 ThinQ","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"Yes","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":380.74,"price_usd":450.38} {"index":{"_index":"mobile_phones"}} {"id":735,"name":"Samsung Galaxy A6","brand":"Samsung","model":"Galaxy A6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":736,"name":"Samsung Galaxy J2 (2018)","brand":"Samsung","model":"Galaxy J2 (2018)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":737,"name":"Vivo Y53i","brand":"Vivo","model":"Y53i","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":81.5,"price_usd":96.41} {"index":{"_index":"mobile_phones"}} {"id":738,"name":"Vivo V9 Youth","brand":"Vivo","model":"V9 Youth","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":739,"name":"Moto E5","brand":"Motorola","model":"Moto E5","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.08,"price_usd":99.46} {"index":{"_index":"mobile_phones"}} {"id":740,"name":"Vivo Y71","brand":"Vivo","model":"Y71","battery_capacity_mAh":3360,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":741,"name":"Coolpad A1","brand":"Coolpad","model":"A1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":48.55,"price_usd":57.43} {"index":{"_index":"mobile_phones"}} {"id":742,"name":"Samsung Galaxy J7 Duo","brand":"Samsung","model":"Galaxy J7 Duo","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":112.53,"price_usd":133.12} {"index":{"_index":"mobile_phones"}} {"id":743,"name":"Honor 7A","brand":"Honor","model":"7A","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":744,"name":"Lava Z91","brand":"Lava","model":"Z91","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"No","bluetooth":"No","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":745,"name":"Oppo A83 (2018)","brand":"Oppo","model":"A83 (2018)","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":746,"name":"LG K9","brand":"LG","model":"K9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":747,"name":"Samsung Galaxy J7 Prime 2","brand":"Samsung","model":"Galaxy J7 Prime 2","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":111.05,"price_usd":131.36} {"index":{"_index":"mobile_phones"}} {"id":748,"name":"Intex Aqua Lions E3","brand":"Intex","model":"Aqua Lions E3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":749,"name":"Itel A44 Pro","brand":"Itel","model":"A44 Pro","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.14,"price_usd":48.67} {"index":{"_index":"mobile_phones"}} {"id":750,"name":"Itel A44","brand":"Itel","model":"A44","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":751,"name":"Moto G6 Plus","brand":"Motorola","model":"Moto G6 Plus","battery_capacity_mAh":3200,"screen_size_inches":5.93,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":136.44,"price_usd":161.39} {"index":{"_index":"mobile_phones"}} {"id":752,"name":"Lava Z50","brand":"Lava","model":"Z50","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.02,"price_usd":56.8} {"index":{"_index":"mobile_phones"}} {"id":753,"name":"Sony Xperia XZ2","brand":"Sony","model":"Xperia XZ2","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":19,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":612.37,"price_usd":724.38} {"index":{"_index":"mobile_phones"}} {"id":754,"name":"Nokia 8110 4G","brand":"Nokia","model":"8110 4G","battery_capacity_mAh":1500,"screen_size_inches":2.45,"touchscreen":"No","resolution_x":240,"resolution_y":320,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0,"operating_system":"Cyanogen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":755,"name":"Alcatel 3V","brand":"Alcatel","model":"3V","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":756,"name":"Alcatel 3X","brand":"Alcatel","model":"3X","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":757,"name":"Cat S61","brand":"Cat","model":"S61","battery_capacity_mAh":4500,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":718.14,"price_usd":849.49} {"index":{"_index":"mobile_phones"}} {"id":758,"name":"Karbonn Titanium Jumbo 2","brand":"Karbonn","model":"Titanium Jumbo 2","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":87.0,"price_usd":102.92} {"index":{"_index":"mobile_phones"}} {"id":759,"name":"Celkon UniQ","brand":"Celkon","model":"UniQ","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":76.67,"price_usd":90.69} {"index":{"_index":"mobile_phones"}} {"id":760,"name":"Comio C2 Lite","brand":"Comio","model":"C2 Lite","battery_capacity_mAh":3900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":761,"name":"Comio S1 Lite","brand":"Comio","model":"S1 Lite","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":762,"name":"Ziox Duopix F9","brand":"Ziox","model":"Duopix F9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":763,"name":"Intex Aqua Lions T1 Lite","brand":"Intex","model":"Aqua Lions T1 Lite","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":764,"name":"Panasonic P100","brand":"Panasonic","model":"P100","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":765,"name":"InFocus A2","brand":"InFocus","model":"A2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":766,"name":"Oppo A71 (2018)","brand":"Oppo","model":"A71 (2018)","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":767,"name":"Vivo Y53","brand":"Vivo","model":"Y53","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":768,"name":"Ziox Astra Star","brand":"Ziox","model":"Astra Star","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":769,"name":"HTC U11 EYEs","brand":"HTC","model":"U11 EYEs","battery_capacity_mAh":3930,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":770,"name":"Karbonn Titanium Frames S7","brand":"Karbonn","model":"Titanium Frames S7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":771,"name":"iVoomi i1s","brand":"iVoomi","model":"i1s","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":640,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":772,"name":"Sony Xperia L2","brand":"Sony","model":"Xperia L2","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":775.25,"price_usd":917.05} {"index":{"_index":"mobile_phones"}} {"id":773,"name":"Sony Xperia XA2 Ultra","brand":"Sony","model":"Xperia XA2 Ultra","battery_capacity_mAh":3580,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":23,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":784.39,"price_usd":927.86} {"index":{"_index":"mobile_phones"}} {"id":774,"name":"Micromax Bharat 5 Plus","brand":"Micromax","model":"Bharat 5 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":47.28,"price_usd":55.92} {"index":{"_index":"mobile_phones"}} {"id":775,"name":"Gionee S10 Lite","brand":"Gionee","model":"S10 Lite","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.53,"price_usd":78.69} {"index":{"_index":"mobile_phones"}} {"id":776,"name":"Ziox Duopix R1","brand":"Ziox","model":"Duopix R1","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":777,"name":"Celkon Star 4G+","brand":"Celkon","model":"Star 4G+","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":778,"name":"Karbonn K9 Music 4G","brand":"Karbonn","model":"K9 Music 4G","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.32,"price_usd":52.42} {"index":{"_index":"mobile_phones"}} {"id":779,"name":"Itel A20","brand":"Itel","model":"A20","battery_capacity_mAh":1700,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.65,"price_usd":46.9} {"index":{"_index":"mobile_phones"}} {"id":780,"name":"Jivi Revolution TnT3","brand":"Jivi","model":"Revolution TnT3","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":26.97,"price_usd":31.9} {"index":{"_index":"mobile_phones"}} {"id":781,"name":"Panasonic Eluga I9","brand":"Panasonic","model":"Eluga I9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":782,"name":"Intex Elyt E6","brand":"Intex","model":"Elyt E6","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.17,"price_usd":84.19} {"index":{"_index":"mobile_phones"}} {"id":783,"name":"Micromax Bharat 2 Plus","brand":"Micromax","model":"Bharat 2 Plus","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":24.75,"price_usd":29.28} {"index":{"_index":"mobile_phones"}} {"id":784,"name":"Micromax Canvas Infinity Pro","brand":"Micromax","model":"Canvas Infinity Pro","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":785,"name":"Kult Ambition","brand":"Kult","model":"Ambition","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":786,"name":"Micromax Bharat 5","brand":"Micromax","model":"Bharat 5","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":787,"name":"Intex Elyt Dual","brand":"Intex","model":"Elyt Dual","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":56.0,"price_usd":66.25} {"index":{"_index":"mobile_phones"}} {"id":788,"name":"Gionee F205","brand":"Gionee","model":"F205","battery_capacity_mAh":2670,"screen_size_inches":5.45,"touchscreen":"Yes","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":789,"name":"Panasonic P91","brand":"Panasonic","model":"P91","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":790,"name":"Infinix Zero 5","brand":"Infinix","model":"Zero 5","battery_capacity_mAh":4350,"screen_size_inches":5.98,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":791,"name":"Intex Aqua Jewel 2","brand":"Intex","model":"Aqua Jewel 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.56,"price_usd":62.18} {"index":{"_index":"mobile_phones"}} {"id":792,"name":"Intex Aqua Lions T1","brand":"Intex","model":"Aqua Lions T1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.54,"price_usd":56.24} {"index":{"_index":"mobile_phones"}} {"id":793,"name":"Karbonn K9 Smart Eco","brand":"Karbonn","model":"K9 Smart Eco","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":794,"name":"Karbonn K9 Smart Yuva","brand":"Karbonn","model":"K9 Smart Yuva","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.19,"price_usd":47.54} {"index":{"_index":"mobile_phones"}} {"id":795,"name":"Karbonn A1 Indian","brand":"Karbonn","model":"A1 Indian","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":25.91,"price_usd":30.65} {"index":{"_index":"mobile_phones"}} {"id":796,"name":"Billion Capture+","brand":"Billion","model":"Capture+","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":797,"name":"Zen Admire Unity","brand":"Zen","model":"Admire Unity","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":798,"name":"Panasonic Eluga I5","brand":"Panasonic","model":"Eluga I5","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":799,"name":"Itel S21","brand":"Itel","model":"S21","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":800,"name":"Panasonic Eluga A4","brand":"Panasonic","model":"Eluga A4","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.77,"price_usd":74.25} {"index":{"_index":"mobile_phones"}} {"id":801,"name":"Redmi Y1 Lite","brand":"Xiaomi","model":"Redmi Y1 Lite","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":802,"name":"Huawei Holly 4 Plus","brand":"Huawei","model":"Holly 4 Plus","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1290,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":803,"name":"Karbonn K9 Smart Selfie","brand":"Karbonn","model":"K9 Smart Selfie","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.71,"price_usd":41.06} {"index":{"_index":"mobile_phones"}} {"id":804,"name":"Celkon Smart 4G","brand":"Celkon","model":"Smart 4G","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":805,"name":"Sony Xperia R1 Plus","brand":"Sony","model":"Xperia R1 Plus","battery_capacity_mAh":2620,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":806,"name":"Sony Xperia R1","brand":"Sony","model":"Xperia R1","battery_capacity_mAh":2620,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":807,"name":"Karbonn Titanium Jumbo","brand":"Karbonn","model":"Titanium Jumbo","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":808,"name":"Micromax Bharat-2 Ultra","brand":"Micromax","model":"Bharat-2 Ultra","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":24.32,"price_usd":28.76} {"index":{"_index":"mobile_phones"}} {"id":809,"name":"Nokia 2","brand":"Nokia","model":"2","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":810,"name":"Lephone W15","brand":"Lephone","model":"W15","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.99,"price_usd":49.67} {"index":{"_index":"mobile_phones"}} {"id":811,"name":"Xolo Era 3","brand":"Xolo","model":"Era 3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":812,"name":"Xolo Era 2V","brand":"Xolo","model":"Era 2V","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":813,"name":"Xolo Era 3X","brand":"Xolo","model":"Era 3X","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":814,"name":"Samsung Galaxy J2 (2017)","brand":"Samsung","model":"Galaxy J2 (2017)","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":815,"name":"Swipe Elite Pro","brand":"Swipe","model":"Elite Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":816,"name":"BlackBerry Motion","brand":"BlackBerry","model":"Motion","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":817,"name":"Lava Z90","brand":"Lava","model":"Z90","battery_capacity_mAh":2750,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":818,"name":"Lava Z80","brand":"Lava","model":"Z80","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.97,"price_usd":59.11} {"index":{"_index":"mobile_phones"}} {"id":819,"name":"Lava Z70","brand":"Lava","model":"Z70","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":55.83,"price_usd":66.05} {"index":{"_index":"mobile_phones"}} {"id":820,"name":"Comio C2","brand":"Comio","model":"C2","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":821,"name":"LG K7i","brand":"LG","model":"K7i","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.7,"price_usd":54.06} {"index":{"_index":"mobile_phones"}} {"id":822,"name":"Ziox Astra Curve 4G","brand":"Ziox","model":"Astra Curve 4G","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":823,"name":"Panasonic Eluga I4","brand":"Panasonic","model":"Eluga I4","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":824,"name":"10.or G","brand":"10.or","model":"G","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":825,"name":"Karbonn K9 Smart Grand","brand":"Karbonn","model":"K9 Smart Grand","battery_capacity_mAh":2300,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":36.91,"price_usd":43.66} {"index":{"_index":"mobile_phones"}} {"id":826,"name":"Intex Aqua Lions 2","brand":"Intex","model":"Aqua Lions 2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":240,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":41.14,"price_usd":48.67} {"index":{"_index":"mobile_phones"}} {"id":827,"name":"Itel S41","brand":"Itel","model":"S41","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.22,"price_usd":67.68} {"index":{"_index":"mobile_phones"}} {"id":828,"name":"Intex Aqua S1","brand":"Intex","model":"Aqua S1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":829,"name":"Intex Cloud C1","brand":"Intex","model":"Cloud C1","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.2,"price_usd":36.91} {"index":{"_index":"mobile_phones"}} {"id":830,"name":"Gionee X1s","brand":"Gionee","model":"X1s","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":831,"name":"Micromax Bharat 4","brand":"Micromax","model":"Bharat 4","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":36.81,"price_usd":43.54} {"index":{"_index":"mobile_phones"}} {"id":832,"name":"Micromax Bharat 3","brand":"Micromax","model":"Bharat 3","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.8,"price_usd":41.16} {"index":{"_index":"mobile_phones"}} {"id":833,"name":"Panasonic Eluga Ray 700","brand":"Panasonic","model":"Eluga Ray 700","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":834,"name":"Panasonic Eluga Ray 500","brand":"Panasonic","model":"Eluga Ray 500","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.31,"price_usd":73.7} {"index":{"_index":"mobile_phones"}} {"id":835,"name":"Yu Yureka 2","brand":"Yu","model":"reka 2","battery_capacity_mAh":3930,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":836,"name":"Intex Aqua 5.5 VR+","brand":"Intex","model":"Aqua 5.5 VR+","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":837,"name":"InFocus Snap 4","brand":"InFocus","model":"Snap 4","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":65.52,"price_usd":77.51} {"index":{"_index":"mobile_phones"}} {"id":838,"name":"10.or E","brand":"10.or","model":"E","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":839,"name":"Lenovo K8","brand":"Lenovo","model":"K8","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.46,"price_usd":88.08} {"index":{"_index":"mobile_phones"}} {"id":840,"name":"Panasonic P9","brand":"Panasonic","model":"P9","battery_capacity_mAh":2210,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":69.85,"price_usd":82.62} {"index":{"_index":"mobile_phones"}} {"id":841,"name":"Oppo A71","brand":"Oppo","model":"A71","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":842,"name":"iVoomi Me 3s","brand":"iVoomi","model":"Me 3s","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.35,"price_usd":61.93} {"index":{"_index":"mobile_phones"}} {"id":843,"name":"iVoomi Me 3","brand":"iVoomi","model":"Me 3","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.08,"price_usd":47.42} {"index":{"_index":"mobile_phones"}} {"id":844,"name":"Alcatel A7","brand":"Alcatel","model":"A7","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":845,"name":"Cat S31","brand":"Cat","model":"S31","battery_capacity_mAh":4000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":296.03,"price_usd":350.18} {"index":{"_index":"mobile_phones"}} {"id":846,"name":"Cat S41","brand":"Cat","model":"S41","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":475.83,"price_usd":562.87} {"index":{"_index":"mobile_phones"}} {"id":847,"name":"Sony Xperia XA1 Plus","brand":"Sony","model":"Xperia XA1 Plus","battery_capacity_mAh":3430,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":848,"name":"Intex Aqua Note 5.5","brand":"Intex","model":"Aqua Note 5.5","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.43,"price_usd":54.92} {"index":{"_index":"mobile_phones"}} {"id":849,"name":"Jivi Grand 3000","brand":"Jivi","model":"Grand 3000","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":68.21,"price_usd":80.68} {"index":{"_index":"mobile_phones"}} {"id":850,"name":"Jivi Prime 390","brand":"Jivi","model":"Prime 390","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":851,"name":"Jivi Prime 300","brand":"Jivi","model":"Prime 300","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":852,"name":"Jivi Energy E12","brand":"Jivi","model":"Energy E12","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":853,"name":"Jivi Energy E3","brand":"Jivi","model":"Energy E3","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":854,"name":"Intex Aqua Style III","brand":"Intex","model":"Aqua Style III","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":855,"name":"Vivo Y69","brand":"Vivo","model":"Y69","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":856,"name":"iVoomi Me 2","brand":"iVoomi","model":"Me 2","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":30.67,"price_usd":36.28} {"index":{"_index":"mobile_phones"}} {"id":857,"name":"Swipe Neo Power","brand":"Swipe","model":"Neo Power","battery_capacity_mAh":2500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":858,"name":"Meizu M6 Note","brand":"Meizu","model":"M6 Note","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.07,"price_usd":175.15} {"index":{"_index":"mobile_phones"}} {"id":859,"name":"Nuu Mobile Q500","brand":"Nuu Mobile","model":"Q500","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":860,"name":"Nuu Mobile Q626","brand":"Nuu Mobile","model":"Q626","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":861,"name":"Alcatel U5 HD","brand":"Alcatel","model":"U5 HD","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":862,"name":"M-tech TEZ4G","brand":"M-tech","model":"TEZ4G","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.78,"price_usd":49.42} {"index":{"_index":"mobile_phones"}} {"id":863,"name":"Gionee X1","brand":"Gionee","model":"X1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.65,"price_usd":62.28} {"index":{"_index":"mobile_phones"}} {"id":864,"name":"Comio C1","brand":"Comio","model":"C1","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":865,"name":"Comio S1","brand":"Comio","model":"S1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":866,"name":"Comio P1","brand":"Comio","model":"P1","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":91.66,"price_usd":108.42} {"index":{"_index":"mobile_phones"}} {"id":867,"name":"Micromax Evok Dual Note","brand":"Micromax","model":"Evok Dual Note","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":868,"name":"Asus ZenFone 4","brand":"Asus","model":"ZenFone 4","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":869,"name":"Swipe Elite 4G","brand":"Swipe","model":"Elite 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":870,"name":"Panasonic Eluga I2 Activ","brand":"Panasonic","model":"Eluga I2 Activ","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":871,"name":"Asus ZenFone 4 Selfie DC (ZD553KL)","brand":"Asus","model":"ZenFone 4 Selfie DC (ZD553KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":872,"name":"Itel PowerPro P41","brand":"Itel","model":"PowerPro P41","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":41.04,"price_usd":48.54} {"index":{"_index":"mobile_phones"}} {"id":873,"name":"Panasonic Eluga A3","brand":"Panasonic","model":"Eluga A3","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":62.77,"price_usd":74.25} {"index":{"_index":"mobile_phones"}} {"id":874,"name":"Gionee A1 Lite","brand":"Gionee","model":"A1 Lite","battery_capacity_mAh":4000,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":875,"name":"Karbonn A41 Power","brand":"Karbonn","model":"A41 Power","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":29.13,"price_usd":34.46} {"index":{"_index":"mobile_phones"}} {"id":876,"name":"Swipe Konnect Power","brand":"Swipe","model":"Konnect Power","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":877,"name":"Kult Beyond","brand":"Kult","model":"Beyond","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":878,"name":"Coolpad Note 5 Lite C","brand":"Coolpad","model":"Note 5 Lite C","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":48.76,"price_usd":57.68} {"index":{"_index":"mobile_phones"}} {"id":879,"name":"Karbonn Aura Note Play","brand":"Karbonn","model":"Aura Note Play","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":880,"name":"Infinix Hot 4 Pro","brand":"Infinix","model":"Hot 4 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":881,"name":"Infinix Note 4","brand":"Infinix","model":"Note 4","battery_capacity_mAh":4300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":882,"name":"Micromax Selfie 2","brand":"Micromax","model":"Selfie 2","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":51.77,"price_usd":61.24} {"index":{"_index":"mobile_phones"}} {"id":883,"name":"Meizu Pro 7","brand":"Meizu","model":"Pro 7","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":296.14,"price_usd":350.31} {"index":{"_index":"mobile_phones"}} {"id":884,"name":"Yu Yunique 2","brand":"Yu","model":"nique 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":885,"name":"Lyf C459","brand":"Lyf","model":"C459","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":37.97,"price_usd":44.91} {"index":{"_index":"mobile_phones"}} {"id":886,"name":"Samsung Galaxy J7 Nxt","brand":"Samsung","model":"Galaxy J7 Nxt","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":887,"name":"Intex Aqua Lions 3","brand":"Intex","model":"Aqua Lions 3","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":57.54,"price_usd":68.06} {"index":{"_index":"mobile_phones"}} {"id":888,"name":"iVoomi Me5","brand":"iVoomi","model":"Me5","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.8,"price_usd":41.16} {"index":{"_index":"mobile_phones"}} {"id":889,"name":"iVoomi Me4","brand":"iVoomi","model":"Me4","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":36.49,"price_usd":43.16} {"index":{"_index":"mobile_phones"}} {"id":890,"name":"Intex Aqua Zenith","brand":"Intex","model":"Aqua Zenith","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":891,"name":"Micromax Canvas 1","brand":"Micromax","model":"Canvas 1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.03,"price_usd":46.17} {"index":{"_index":"mobile_phones"}} {"id":892,"name":"Intex Aqua Selfie","brand":"Intex","model":"Aqua Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":51.6,"price_usd":61.04} {"index":{"_index":"mobile_phones"}} {"id":893,"name":"Asus ZenFone 4 Selfie","brand":"Asus","model":"ZenFone 4 Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":68.21,"price_usd":80.68} {"index":{"_index":"mobile_phones"}} {"id":894,"name":"Xolo Era 1X Pro","brand":"Xolo","model":"Era 1X Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.85,"price_usd":86.18} {"index":{"_index":"mobile_phones"}} {"id":895,"name":"LG Q6+","brand":"LG","model":"Q6+","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":896,"name":"Intex Aqua S3","brand":"Intex","model":"Aqua S3","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.09,"price_usd":49.79} {"index":{"_index":"mobile_phones"}} {"id":897,"name":"Nubia M2 Play","brand":"Nubia","model":"M2 Play","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":898,"name":"Samsung Galaxy J7 Max","brand":"Samsung","model":"Galaxy J7 Max","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.83,"price_usd":138.2} {"index":{"_index":"mobile_phones"}} {"id":899,"name":"Samsung Galaxy J7 Pro","brand":"Samsung","model":"Galaxy J7 Pro","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":178.74,"price_usd":211.44} {"index":{"_index":"mobile_phones"}} {"id":900,"name":"Lyf Water 7S","brand":"Lyf","model":"Water 7S","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":901,"name":"Panasonic Eluga I3 Mega","brand":"Panasonic","model":"Eluga I3 Mega","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":61.67,"price_usd":72.95} {"index":{"_index":"mobile_phones"}} {"id":902,"name":"Ziox Astra VIVA 4G","brand":"Ziox","model":"Astra VIVA 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":903,"name":"Lava A77","brand":"Lava","model":"A77","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":904,"name":"Karbonn Aura Power 4G Plus","brand":"Karbonn","model":"Aura Power 4G Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":905,"name":"Itel Wish A21","brand":"Itel","model":"Wish A21","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.82,"price_usd":48.29} {"index":{"_index":"mobile_phones"}} {"id":906,"name":"Itel Wish A41+","brand":"Itel","model":"Wish A41+","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.81,"price_usd":81.4} {"index":{"_index":"mobile_phones"}} {"id":907,"name":"Motorola Moto C Plus","brand":"Motorola","model":"Moto C Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.47,"price_usd":77.44} {"index":{"_index":"mobile_phones"}} {"id":908,"name":"Samsung Z4","brand":"Samsung","model":"Z4","battery_capacity_mAh":1050,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Tizen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":909,"name":"Panasonic P85","brand":"Panasonic","model":"P85","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":910,"name":"Panasonic Eluga Ray","brand":"Panasonic","model":"Eluga Ray","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":911,"name":"Karbonn Aura 4G","brand":"Karbonn","model":"Aura 4G","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":66.91,"price_usd":79.14} {"index":{"_index":"mobile_phones"}} {"id":912,"name":"Intex Aqua Crystal Plus","brand":"Intex","model":"Aqua Crystal Plus","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":913,"name":"Asus ZenFone Go 5.5 (ZB552KL)","brand":"Asus","model":"ZenFone Go 5.5 (ZB552KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":64.62,"price_usd":76.44} {"index":{"_index":"mobile_phones"}} {"id":914,"name":"Ziox Astra Colors 4G","brand":"Ziox","model":"Astra Colors 4G","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":915,"name":"Zen Admire Joy","brand":"Zen","model":"Admire Joy","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":768,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":916,"name":"Intex Aqua A4","brand":"Intex","model":"Aqua A4","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":48.92,"price_usd":57.86} {"index":{"_index":"mobile_phones"}} {"id":917,"name":"Zopo Color M5","brand":"Zopo","model":"Color M5","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":35.84,"price_usd":42.4} {"index":{"_index":"mobile_phones"}} {"id":918,"name":"Videocon Krypton 22","brand":"Videocon","model":"Krypton 22","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":919,"name":"Zen Admire Metal","brand":"Zen","model":"Admire Metal","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":920,"name":"Motorola Moto E4 Plus","brand":"Motorola","model":"Moto E4 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":921,"name":"Ziox Astra Force 4G","brand":"Ziox","model":"Astra Force 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":922,"name":"Zopo Color M4","brand":"Zopo","model":"Color M4","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"No","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":0,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":51.7,"price_usd":61.15} {"index":{"_index":"mobile_phones"}} {"id":923,"name":"Honor Bee 2","brand":"Honor","model":"Bee 2","battery_capacity_mAh":2100,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":924,"name":"Tecno i5 Pro","brand":"Tecno","model":"i5 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.8,"price_usd":84.94} {"index":{"_index":"mobile_phones"}} {"id":925,"name":"Tecno i3 Pro","brand":"Tecno","model":"i3 Pro","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.69,"price_usd":125.02} {"index":{"_index":"mobile_phones"}} {"id":926,"name":"Tecno i5","brand":"Tecno","model":"i5","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":70.11,"price_usd":82.94} {"index":{"_index":"mobile_phones"}} {"id":927,"name":"Tecno i3","brand":"Tecno","model":"i3","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.54,"price_usd":89.35} {"index":{"_index":"mobile_phones"}} {"id":928,"name":"Videocon Delite 11+","brand":"Videocon","model":"Delite 11+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":929,"name":"Motorola Moto C","brand":"Motorola","model":"Moto C","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":930,"name":"Motorola Moto E4","brand":"Motorola","model":"Moto E4","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":931,"name":"Micromax Evok Note","brand":"Micromax","model":"Evok Note","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":52.46,"price_usd":62.05} {"index":{"_index":"mobile_phones"}} {"id":932,"name":"Zopo Color X 5.5","brand":"Zopo","model":"Color X 5.5","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":42.09,"price_usd":49.79} {"index":{"_index":"mobile_phones"}} {"id":933,"name":"Lephone W7","brand":"Lephone","model":"W7","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":43.42,"price_usd":51.36} {"index":{"_index":"mobile_phones"}} {"id":934,"name":"Ziox QUIQ Flash 4G","brand":"Ziox","model":"QUIQ Flash 4G","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":935,"name":"Intex ELYT-e1","brand":"Intex","model":"ELYT-e1","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":64.52,"price_usd":76.32} {"index":{"_index":"mobile_phones"}} {"id":936,"name":"Sansui Horizon 1","brand":"Sansui","model":"Horizon 1","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":937,"name":"Micromax Bharat 2","brand":"Micromax","model":"Bharat 2","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":24.95,"price_usd":29.51} {"index":{"_index":"mobile_phones"}} {"id":938,"name":"Swipe Konnect Neo 4G","brand":"Swipe","model":"Konnect Neo 4G","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":939,"name":"Itel Wish A41","brand":"Itel","model":"Wish A41","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"No","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.61,"price_usd":61.05} {"index":{"_index":"mobile_phones"}} {"id":940,"name":"Panasonic Eluga Ray X","brand":"Panasonic","model":"Eluga Ray X","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.72,"price_usd":74.19} {"index":{"_index":"mobile_phones"}} {"id":941,"name":"Panasonic Eluga Ray Max","brand":"Panasonic","model":"Eluga Ray Max","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":121.62,"price_usd":143.86} {"index":{"_index":"mobile_phones"}} {"id":942,"name":"Intex Aqua 4G Mini","brand":"Intex","model":"Aqua 4G Mini","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":41.62,"price_usd":49.23} {"index":{"_index":"mobile_phones"}} {"id":943,"name":"Micromax Spark Vdeo","brand":"Micromax","model":"Spark Vdeo","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":944,"name":"Zen Admire Swadesh","brand":"Zen","model":"Admire Swadesh","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":945,"name":"Nubia N2","brand":"Nubia","model":"N2","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.71,"price_usd":113.21} {"index":{"_index":"mobile_phones"}} {"id":946,"name":"Nubia M2 Lite","brand":"Nubia","model":"M2 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.73,"price_usd":89.58} {"index":{"_index":"mobile_phones"}} {"id":947,"name":"Karbonn Aura Sleek 4G","brand":"Karbonn","model":"Aura Sleek 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":59.95,"price_usd":70.91} {"index":{"_index":"mobile_phones"}} {"id":948,"name":"Intex Aqua Trend Lite","brand":"Intex","model":"Aqua Trend Lite","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":949,"name":"Lenovo Vibe B","brand":"Lenovo","model":"Vibe B","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":68.22,"price_usd":80.7} {"index":{"_index":"mobile_phones"}} {"id":950,"name":"LeEco Le Pro 3 Elite","brand":"LeEco","model":"Le Pro 3 Elite","battery_capacity_mAh":4070,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":951,"name":"iVoomi iV505","brand":"iVoomi","model":"iV505","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":952,"name":"Swipe Elite Sense","brand":"Swipe","model":"Elite Sense","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":953,"name":"Intex Aqua Strong 5.1+","brand":"Intex","model":"Aqua Strong 5.1+","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":39.03,"price_usd":46.17} {"index":{"_index":"mobile_phones"}} {"id":954,"name":"Nubia N1 lite","brand":"Nubia","model":"N1 lite","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":955,"name":"ZTE Blade V8 Mini","brand":"ZTE","model":"Blade V8 Mini","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":55.0,"price_usd":65.06} {"index":{"_index":"mobile_phones"}} {"id":956,"name":"Alcatel A5 LED","brand":"Alcatel","model":"A5 LED","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.92,"price_usd":187.99} {"index":{"_index":"mobile_phones"}} {"id":957,"name":"Sony Xperia XA1","brand":"Sony","model":"Xperia XA1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":958,"name":"Swipe Elite 3","brand":"Swipe","model":"Elite 3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":959,"name":"Nokia 5","brand":"Nokia","model":"5","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":960,"name":"Swipe Konnect Star","brand":"Swipe","model":"Konnect Star","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":28.45,"price_usd":33.65} {"index":{"_index":"mobile_phones"}} {"id":961,"name":"Asus ZenFone Go 5.0 LTE (ZB500KL)","brand":"Asus","model":"ZenFone Go 5.0 LTE (ZB500KL)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":962,"name":"Intex Aqua Lions 4G","brand":"Intex","model":"Aqua Lions 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":963,"name":"Intex Aqua 4.0","brand":"Intex","model":"Aqua 4.0","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":360,"resolution_y":640,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":43.31,"price_usd":51.23} {"index":{"_index":"mobile_phones"}} {"id":964,"name":"Intex Aqua Amaze+","brand":"Intex","model":"Aqua Amaze+","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":965,"name":"Swipe Elite Power","brand":"Swipe","model":"Elite Power","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":966,"name":"Lava X41+","brand":"Lava","model":"X41+","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":967,"name":"Intex Cloud Style 4G","brand":"Intex","model":"Cloud Style 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":968,"name":"Micromax Vdeo 3","brand":"Micromax","model":"Vdeo 3","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":969,"name":"Micromax Vdeo 4","brand":"Micromax","model":"Vdeo 4","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":970,"name":"Samsung Galaxy J2 Ace","brand":"Samsung","model":"Galaxy J2 Ace","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":971,"name":"Swipe Konnect Grand","brand":"Swipe","model":"Konnect Grand","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":972,"name":"Xolo Era 2X","brand":"Xolo","model":"Era 2X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":64.51,"price_usd":76.3} {"index":{"_index":"mobile_phones"}} {"id":973,"name":"Lyf Water 3","brand":"Lyf","model":"Water 3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"No","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":974,"name":"Lyf F1S","brand":"Lyf","model":"F1S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":80.37,"price_usd":95.07} {"index":{"_index":"mobile_phones"}} {"id":975,"name":"Karbonn K9 Viraat 4G","brand":"Karbonn","model":"K9 Viraat 4G","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.4,"price_usd":73.81} {"index":{"_index":"mobile_phones"}} {"id":976,"name":"Lyf Wind 7S","brand":"Lyf","model":"Wind 7S","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":64.51,"price_usd":76.3} {"index":{"_index":"mobile_phones"}} {"id":977,"name":"LG Stylus 3","brand":"LG","model":"Stylus 3","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":978,"name":"LG K8 (2017)","brand":"LG","model":"K8 (2017)","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":979,"name":"Zuk Edge","brand":"Zuk","model":"Edge","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":308.03,"price_usd":364.37} {"index":{"_index":"mobile_phones"}} {"id":980,"name":"Zen Cinemax Click","brand":"Zen","model":"Cinemax Click","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":981,"name":"Lava A76+","brand":"Lava","model":"A76+","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":982,"name":"Swipe Elite Max","brand":"Swipe","model":"Elite Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":983,"name":"Panasonic P88","brand":"Panasonic","model":"P88","battery_capacity_mAh":2600,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":984,"name":"Swipe Elite Star","brand":"Swipe","model":"Elite Star","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":985,"name":"Gionee P7","brand":"Gionee","model":"P7","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":986,"name":"Micromax Vdeo 2","brand":"Micromax","model":"Vdeo 2","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.35,"price_usd":61.93} {"index":{"_index":"mobile_phones"}} {"id":987,"name":"Micromax Vdeo 1","brand":"Micromax","model":"Vdeo 1","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":988,"name":"Meizu M5 Note","brand":"Meizu","model":"M5 Note","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":989,"name":"Lyf Water 9","brand":"Lyf","model":"Water 9","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.7,"price_usd":69.44} {"index":{"_index":"mobile_phones"}} {"id":990,"name":"Lava X50+","brand":"Lava","model":"X50+","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":991,"name":"Meizu Pro 6 Plus","brand":"Meizu","model":"Pro 6 Plus","battery_capacity_mAh":3400,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":291.91,"price_usd":345.3} {"index":{"_index":"mobile_phones"}} {"id":992,"name":"Panasonic Eluga Mark 2","brand":"Panasonic","model":"Eluga Mark 2","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":993,"name":"HTC 10 evo","brand":"HTC","model":"10 evo","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":117.4,"price_usd":138.87} {"index":{"_index":"mobile_phones"}} {"id":994,"name":"Lyf Wind 7i","brand":"Lyf","model":"Wind 7i","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":53.93,"price_usd":63.79} {"index":{"_index":"mobile_phones"}} {"id":995,"name":"Panasonic P71","brand":"Panasonic","model":"P71","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":996,"name":"Zopo Color F2","brand":"Zopo","model":"Color F2","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.63,"price_usd":57.53} {"index":{"_index":"mobile_phones"}} {"id":997,"name":"Motorola Moto M","brand":"Motorola","model":"Moto M","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":998,"name":"Lyf F8","brand":"Lyf","model":"F8","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":999,"name":"Huawei Mate 9","brand":"Huawei","model":"Mate 9","battery_capacity_mAh":4000,"screen_size_inches":5.9,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":570.95,"price_usd":675.38} {"index":{"_index":"mobile_phones"}} {"id":1000,"name":"Intex Aqua Power M","brand":"Intex","model":"Aqua Power M","battery_capacity_mAh":4350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":0,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1001,"name":"Zen Cinemax 2+","brand":"Zen","model":"Cinemax 2+","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":39.55,"price_usd":46.78} {"index":{"_index":"mobile_phones"}} {"id":1002,"name":"Swipe Elite 2 Plus","brand":"Swipe","model":"Elite 2 Plus","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1003,"name":"Samsung Galaxy On Nxt","brand":"Samsung","model":"Galaxy On Nxt","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":118.46,"price_usd":140.12} {"index":{"_index":"mobile_phones"}} {"id":1004,"name":"Xolo Era 2","brand":"Xolo","model":"Era 2","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":1005,"name":"Zopo Color F5","brand":"Zopo","model":"Color F5","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.36,"price_usd":53.66} {"index":{"_index":"mobile_phones"}} {"id":1006,"name":"Intex Cloud S9","brand":"Intex","model":"Cloud S9","battery_capacity_mAh":3650,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.62,"price_usd":84.72} {"index":{"_index":"mobile_phones"}} {"id":1007,"name":"Intex Aqua Q8","brand":"Intex","model":"Aqua Q8","battery_capacity_mAh":1650,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":1008,"name":"Intex Aqua Craze II","brand":"Intex","model":"Aqua Craze II","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.42,"price_usd":67.92} {"index":{"_index":"mobile_phones"}} {"id":1009,"name":"Intex Aqua 5.5 VR","brand":"Intex","model":"Aqua 5.5 VR","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":61.86,"price_usd":73.18} {"index":{"_index":"mobile_phones"}} {"id":1010,"name":"Intex Aqua S2","brand":"Intex","model":"Aqua S2","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1011,"name":"Honor 8 Smart","brand":"Honor","model":"8 Smart","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"Yes","price_gbp":176.62,"price_usd":208.92} {"index":{"_index":"mobile_phones"}} {"id":1012,"name":"Honor Holly 3","brand":"Honor","model":"Holly 3","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1013,"name":"BlackBerry DTEK60","brand":"BlackBerry","model":"DTEK60","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":1014,"name":"Xiaomi Mi Max Prime","brand":"Xiaomi","model":"Mi Max Prime","battery_capacity_mAh":4850,"screen_size_inches":6.44,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":1015,"name":"Lyf Wind 4S","brand":"Lyf","model":"Wind 4S","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1820,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.73,"price_usd":81.3} {"index":{"_index":"mobile_phones"}} {"id":1016,"name":"Lyf Flame 7s","brand":"Lyf","model":"Flame 7s","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":37.85,"price_usd":44.78} {"index":{"_index":"mobile_phones"}} {"id":1017,"name":"Zen Cinemax Force","brand":"Zen","model":"Cinemax Force","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1018,"name":"Intex Aqua Strong 5.2","brand":"Intex","model":"Aqua Strong 5.2","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":62.92,"price_usd":74.43} {"index":{"_index":"mobile_phones"}} {"id":1019,"name":"Vivo Y55L","brand":"Vivo","model":"Y55L","battery_capacity_mAh":2730,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1280,"resolution_y":720,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"No","price_gbp":110.52,"price_usd":130.74} {"index":{"_index":"mobile_phones"}} {"id":1020,"name":"Google Pixel","brand":"Google","model":"Pixel","battery_capacity_mAh":2770,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":235.84,"price_usd":278.98} {"index":{"_index":"mobile_phones"}} {"id":1021,"name":"Karbonn Titanium 3-D Plex","brand":"Karbonn","model":"Titanium 3-D Plex","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1022,"name":"Intex Aqua Pro 4G","brand":"Intex","model":"Aqua Pro 4G","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"No","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":47.93,"price_usd":56.7} {"index":{"_index":"mobile_phones"}} {"id":1023,"name":"Gionee P7 Max","brand":"Gionee","model":"P7 Max","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1024,"name":"Coolpad Note 5","brand":"Coolpad","model":"Note 5","battery_capacity_mAh":4010,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":127.45,"price_usd":150.76} {"index":{"_index":"mobile_phones"}} {"id":1025,"name":"Lava A97","brand":"Lava","model":"A97","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.17,"price_usd":68.81} {"index":{"_index":"mobile_phones"}} {"id":1026,"name":"Samsung Galaxy On8","brand":"Samsung","model":"Galaxy On8","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1027,"name":"Micromax Canvas 5 Lite","brand":"Micromax","model":"Canvas 5 Lite","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1028,"name":"Panasonic P77","brand":"Panasonic","model":"P77","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1029,"name":"Lava A56","brand":"Lava","model":"A56","battery_capacity_mAh":1850,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"No","price_gbp":24.32,"price_usd":28.76} {"index":{"_index":"mobile_phones"}} {"id":1030,"name":"Lava X28","brand":"Lava","model":"X28","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":67.69,"price_usd":80.07} {"index":{"_index":"mobile_phones"}} {"id":1031,"name":"Micromax Bolt Q326+","brand":"Micromax","model":"Bolt Q326+","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":33.79,"price_usd":39.97} {"index":{"_index":"mobile_phones"}} {"id":1032,"name":"HTC Desire 10 Lifestyle","brand":"HTC","model":"Desire 10 Lifestyle","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":169.22,"price_usd":200.18} {"index":{"_index":"mobile_phones"}} {"id":1033,"name":"Samsung Galaxy J5 Prime","brand":"Samsung","model":"Galaxy J5 Prime","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":132.19,"price_usd":156.37} {"index":{"_index":"mobile_phones"}} {"id":1034,"name":"Videocon Cube 3","brand":"Videocon","model":"Cube 3","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":87.26,"price_usd":103.22} {"index":{"_index":"mobile_phones"}} {"id":1035,"name":"Zopo Color F1","brand":"Zopo","model":"Color F1","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.83,"price_usd":54.21} {"index":{"_index":"mobile_phones"}} {"id":1036,"name":"Lenovo A7700","brand":"Lenovo","model":"A7700","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1037,"name":"Lenovo A6600 Plus","brand":"Lenovo","model":"A6600 Plus","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":77.21,"price_usd":91.33} {"index":{"_index":"mobile_phones"}} {"id":1038,"name":"Lenovo A6600","brand":"Lenovo","model":"A6600","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":1039,"name":"Zen Admire Star","brand":"Zen","model":"Admire Star","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1040,"name":"Samsung Galaxy Folder 2","brand":"Samsung","model":"Galaxy Folder 2","battery_capacity_mAh":1950,"screen_size_inches":3.8,"touchscreen":"No","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"No","4G":"Yes","price_gbp":179.69,"price_usd":212.56} {"index":{"_index":"mobile_phones"}} {"id":1041,"name":"Xolo Era 1X","brand":"Xolo","model":"Era 1X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":54.46,"price_usd":64.42} {"index":{"_index":"mobile_phones"}} {"id":1042,"name":"Intex Aqua Costa","brand":"Intex","model":"Aqua Costa","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1043,"name":"Intex Aqua Q7N Pro","brand":"Intex","model":"Aqua Q7N Pro","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":28.56,"price_usd":33.78} {"index":{"_index":"mobile_phones"}} {"id":1044,"name":"Lyf Water 10","brand":"Lyf","model":"Water 10","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.94,"price_usd":50.79} {"index":{"_index":"mobile_phones"}} {"id":1045,"name":"Vivo Y21L","brand":"Vivo","model":"Y21L","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":75.09,"price_usd":88.83} {"index":{"_index":"mobile_phones"}} {"id":1046,"name":"Intex Cloud Tread","brand":"Intex","model":"Cloud Tread","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1047,"name":"InFocus Bingo 50+","brand":"InFocus","model":"Bingo 50+","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1048,"name":"Samsung Z2","brand":"Samsung","model":"Z2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Tizen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1049,"name":"Yu Yureka S","brand":"Yu","model":"reka S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":1050,"name":"Yu Yunique Plus","brand":"Yu","model":"nique Plus","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1051,"name":"Celkon Millennia Ufeel","brand":"Celkon","model":"Millennia Ufeel","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1052,"name":"Intex Aqua Eco 4G","brand":"Intex","model":"Aqua Eco 4G","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"No","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1053,"name":"Intex Aqua Viturbo","brand":"Intex","model":"Aqua Viturbo","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"No","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"No","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1054,"name":"Lyf Wind 7","brand":"Lyf","model":"Wind 7","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":1055,"name":"Lyf Flame 7","brand":"Lyf","model":"Flame 7","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1056,"name":"Intex Aqua Music","brand":"Intex","model":"Aqua Music","battery_capacity_mAh":3400,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1057,"name":"Asus ZenFone Go (ZB450KL)","brand":"Asus","model":"ZenFone Go (ZB450KL)","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1058,"name":"Lyf Flame 8","brand":"Lyf","model":"Flame 8","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":26.92,"price_usd":31.84} {"index":{"_index":"mobile_phones"}} {"id":1059,"name":"Lyf Wind 3","brand":"Lyf","model":"Wind 3","battery_capacity_mAh":2920,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1060,"name":"Micromax Unite 4 Plus","brand":"Micromax","model":"Unite 4 Plus","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.59,"price_usd":100.06} {"index":{"_index":"mobile_phones"}} {"id":1061,"name":"Swipe Konnect Plus","brand":"Swipe","model":"Konnect Plus","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1062,"name":"Lava X38","brand":"Lava","model":"X38","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1063,"name":"Lyf Wind 2","brand":"Lyf","model":"Wind 2","battery_capacity_mAh":2850,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1064,"name":"Intex Aqua Strong 5.1","brand":"Intex","model":"Aqua Strong 5.1","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"No","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.65,"price_usd":57.55} {"index":{"_index":"mobile_phones"}} {"id":1065,"name":"Lenovo Vibe K5 Note","brand":"Lenovo","model":"Vibe K5 Note","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":1066,"name":"Panasonic Eluga Arc 2","brand":"Panasonic","model":"Eluga Arc 2","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":1067,"name":"Panasonic T44 Lite","brand":"Panasonic","model":"T44 Lite","battery_capacity_mAh":2400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":800,"resolution_y":480,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.16,"price_usd":27.4} {"index":{"_index":"mobile_phones"}} {"id":1068,"name":"Intex Cloud String v2.0","brand":"Intex","model":"Cloud String v2.0","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1069,"name":"Lyf Water 8","brand":"Lyf","model":"Water 8","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":83.55,"price_usd":98.84} {"index":{"_index":"mobile_phones"}} {"id":1070,"name":"Karbonn Fashion Eye","brand":"Karbonn","model":"Fashion Eye","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"No","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":34.68,"price_usd":41.02} {"index":{"_index":"mobile_phones"}} {"id":1071,"name":"Samsung Galaxy J2 Pro","brand":"Samsung","model":"Galaxy J2 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":110.84,"price_usd":131.11} {"index":{"_index":"mobile_phones"}} {"id":1072,"name":"InFocus M535+","brand":"InFocus","model":"M535+","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":1073,"name":"Intex Aqua Ring","brand":"Intex","model":"Aqua Ring","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.85,"price_usd":62.52} {"index":{"_index":"mobile_phones"}} {"id":1074,"name":"Lava A32","brand":"Lava","model":"A32","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1075,"name":"Lava A68","brand":"Lava","model":"A68","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1076,"name":"Intex Aqua Q7N","brand":"Intex","model":"Aqua Q7N","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.31,"price_usd":31.13} {"index":{"_index":"mobile_phones"}} {"id":1077,"name":"Intex Aqua Pride","brand":"Intex","model":"Aqua Pride","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":41.11,"price_usd":48.63} {"index":{"_index":"mobile_phones"}} {"id":1078,"name":"Lava X17","brand":"Lava","model":"X17","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":1079,"name":"Lyf Water 4","brand":"Lyf","model":"Water 4","battery_capacity_mAh":2920,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1080,"name":"Asus ZenFone 3 Max (ZC520TL)","brand":"Asus","model":"ZenFone 3 Max (ZC520TL)","battery_capacity_mAh":4100,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":1081,"name":"Karbonn Aura Power","brand":"Karbonn","model":"Aura Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":1082,"name":"Samsung Galaxy On7 Pro","brand":"Samsung","model":"Galaxy On7 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1083,"name":"Samsung Galaxy On5 Pro","brand":"Samsung","model":"Galaxy On5 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.54,"price_usd":81.07} {"index":{"_index":"mobile_phones"}} {"id":1084,"name":"Samsung Galaxy J2 (2016)","brand":"Samsung","model":"Galaxy J2 (2016)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1085,"name":"Intex Aqua Power 4G","brand":"Intex","model":"Aqua Power 4G","battery_capacity_mAh":3800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1086,"name":"Nubia N1","brand":"Nubia","model":"N1","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":1087,"name":"Panasonic Eluga Note","brand":"Panasonic","model":"Eluga Note","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":1088,"name":"TCL 560","brand":"TCL","model":"560","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.77,"price_usd":62.42} {"index":{"_index":"mobile_phones"}} {"id":1089,"name":"Karbonn A91 Storm","brand":"Karbonn","model":"A91 Storm","battery_capacity_mAh":2200,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1090,"name":"Vivo X7","brand":"Vivo","model":"X7","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1091,"name":"iBall Andi 5G Blink 4G","brand":"iBall","model":"Andi 5G Blink 4G","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":1092,"name":"Nubia Z11","brand":"Nubia","model":"Z11","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":1093,"name":"Lyf Earth 2","brand":"Lyf","model":"Earth 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1094,"name":"Intex Aqua Classic","brand":"Intex","model":"Aqua Classic","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":1095,"name":"Micromax Canvas Fire 5","brand":"Micromax","model":"Canvas Fire 5","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":78.15,"price_usd":92.44} {"index":{"_index":"mobile_phones"}} {"id":1096,"name":"Oppo A37","brand":"Oppo","model":"A37","battery_capacity_mAh":2630,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":91.66,"price_usd":108.42} {"index":{"_index":"mobile_phones"}} {"id":1097,"name":"Intex Aqua Sense 5.1","brand":"Intex","model":"Aqua Sense 5.1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.11,"price_usd":33.25} {"index":{"_index":"mobile_phones"}} {"id":1098,"name":"Panasonic P75","brand":"Panasonic","model":"P75","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1099,"name":"Xiaomi Redmi 3S","brand":"Xiaomi","model":"Redmi 3S","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.75,"price_usd":81.32} {"index":{"_index":"mobile_phones"}} {"id":1100,"name":"Intex Aqua View","brand":"Intex","model":"Aqua View","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.81,"price_usd":61.29} {"index":{"_index":"mobile_phones"}} {"id":1101,"name":"Lyf Water 7","brand":"Lyf","model":"Water 7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":5.22,"price_usd":6.18} {"index":{"_index":"mobile_phones"}} {"id":1102,"name":"Lyf Wind 1","brand":"Lyf","model":"Wind 1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":1103,"name":"Panasonic T44","brand":"Panasonic","model":"T44","battery_capacity_mAh":2400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.97,"price_usd":44.91} {"index":{"_index":"mobile_phones"}} {"id":1104,"name":"Panasonic T30","brand":"Panasonic","model":"T30","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.31,"price_usd":31.13} {"index":{"_index":"mobile_phones"}} {"id":1105,"name":"Lenovo Phab 2","brand":"Lenovo","model":"Phab 2","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1106,"name":"Lenovo Phab 2 Pro","brand":"Lenovo","model":"Phab 2 Pro","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":1107,"name":"Lava X81","brand":"Lava","model":"X81","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1108,"name":"Lyf Wind 5","brand":"Lyf","model":"Wind 5","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":88.83,"price_usd":105.08} {"index":{"_index":"mobile_phones"}} {"id":1109,"name":"Lava X46","brand":"Lava","model":"X46","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":102.59,"price_usd":121.36} {"index":{"_index":"mobile_phones"}} {"id":1110,"name":"Intex Cloud Glory 4G","brand":"Intex","model":"Cloud Glory 4G","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":584,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1111,"name":"Samsung Galaxy J3 Pro","brand":"Samsung","model":"Galaxy J3 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":87.77,"price_usd":103.83} {"index":{"_index":"mobile_phones"}} {"id":1112,"name":"Lyf Flame 6","brand":"Lyf","model":"Flame 6","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1113,"name":"Swipe Elite Plus","brand":"Swipe","model":"Elite Plus","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1114,"name":"Lava A82","brand":"Lava","model":"A82","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1115,"name":"Intex Aqua Shine 4G","brand":"Intex","model":"Aqua Shine 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1116,"name":"LG Stylus 2 Plus","brand":"LG","model":"Stylus 2 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1117,"name":"LG X Power","brand":"LG","model":"X Power","battery_capacity_mAh":4100,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1118,"name":"Lyf Flame 4","brand":"Lyf","model":"Flame 4","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":1119,"name":"Zen Admire SXY","brand":"Zen","model":"Admire SXY","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":27.91,"price_usd":33.02} {"index":{"_index":"mobile_phones"}} {"id":1120,"name":"Lava A59","brand":"Lava","model":"A59","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":1121,"name":"Lava A48","brand":"Lava","model":"A48","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1122,"name":"Panasonic Eluga A2","brand":"Panasonic","model":"Eluga A2","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":57.43,"price_usd":67.93} {"index":{"_index":"mobile_phones"}} {"id":1123,"name":"Lava A79","brand":"Lava","model":"A79","battery_capacity_mAh":2200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":44.42,"price_usd":52.55} {"index":{"_index":"mobile_phones"}} {"id":1124,"name":"Micromax Canvas Selfie 4","brand":"Micromax","model":"Canvas Selfie 4","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.14,"price_usd":74.69} {"index":{"_index":"mobile_phones"}} {"id":1125,"name":"Micromax Bolt Selfie","brand":"Micromax","model":"Bolt Selfie","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1126,"name":"Intex Cloud String HD","brand":"Intex","model":"Cloud String HD","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1127,"name":"Intex Aqua Secure","brand":"Intex","model":"Aqua Secure","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":51.46,"price_usd":60.88} {"index":{"_index":"mobile_phones"}} {"id":1128,"name":"Motorola Moto G4 Play","brand":"Motorola","model":"Moto G4 Play","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1129,"name":"Sony Xperia XA Ultra","brand":"Sony","model":"Xperia XA Ultra","battery_capacity_mAh":2700,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21.5,"front_camera":16,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1130,"name":"Lenovo Vibe C","brand":"Lenovo","model":"Vibe C","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1131,"name":"HTC Desire 628 Dual SIM","brand":"HTC","model":"Desire 628 Dual SIM","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.73,"price_usd":81.3} {"index":{"_index":"mobile_phones"}} {"id":1132,"name":"Lyf Wind 4","brand":"Lyf","model":"Wind 4","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1133,"name":"Lyf Flame 2","brand":"Lyf","model":"Flame 2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1134,"name":"Lava A67","brand":"Lava","model":"A67","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":1135,"name":"Micromax Canvas XP 4G","brand":"Micromax","model":"Canvas XP 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"No","bluetooth":"No","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.6,"price_usd":57.49} {"index":{"_index":"mobile_phones"}} {"id":1136,"name":"Intex Cloud Fame","brand":"Intex","model":"Cloud Fame","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":41.77,"price_usd":49.41} {"index":{"_index":"mobile_phones"}} {"id":1137,"name":"Intex Aqua Joy","brand":"Intex","model":"Aqua Joy","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.2,"price_usd":33.35} {"index":{"_index":"mobile_phones"}} {"id":1138,"name":"HTC Desire 830","brand":"HTC","model":"Desire 830","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1139,"name":"Micromax Canvas Mega 2","brand":"Micromax","model":"Canvas Mega 2","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.64,"price_usd":94.21} {"index":{"_index":"mobile_phones"}} {"id":1140,"name":"iBall Andi 5N Dude","brand":"iBall","model":"Andi 5N Dude","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1141,"name":"Honor 5C","brand":"Honor","model":"5C","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1142,"name":"Panasonic Eluga I3","brand":"Panasonic","model":"Eluga I3","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.69,"price_usd":69.42} {"index":{"_index":"mobile_phones"}} {"id":1143,"name":"Swipe Elite Note","brand":"Swipe","model":"Elite Note","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":1144,"name":"Asus ZenFone Go 4.5 (ZB452KG)","brand":"Asus","model":"ZenFone Go 4.5 (ZB452KG)","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1145,"name":"Intex Aqua 4.5 Pro","brand":"Intex","model":"Aqua 4.5 Pro","battery_capacity_mAh":1500,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":50.24,"price_usd":59.43} {"index":{"_index":"mobile_phones"}} {"id":1146,"name":"ZTE Blade A910","brand":"ZTE","model":"Blade A910","battery_capacity_mAh":2540,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1147,"name":"ZTE Blade V7 Max","brand":"ZTE","model":"Blade V7 Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1148,"name":"LeEco Le 2 Pro","brand":"LeEco","model":"Le 2 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":62.3,"price_usd":73.69} {"index":{"_index":"mobile_phones"}} {"id":1149,"name":"Nubia Z11 mini","brand":"Nubia","model":"Z11 mini","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1150,"name":"Gionee Pioneer P5W","brand":"Gionee","model":"Pioneer P5W","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":50.77,"price_usd":60.05} {"index":{"_index":"mobile_phones"}} {"id":1151,"name":"Yu Yureka Note","brand":"Yu","model":"reka Note","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1152,"name":"Videocon Krypton V50DA","brand":"Videocon","model":"Krypton V50DA","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.37,"price_usd":50.12} {"index":{"_index":"mobile_phones"}} {"id":1153,"name":"HTC 10 Lifestyle","brand":"HTC","model":"10 Lifestyle","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":103.13,"price_usd":121.99} {"index":{"_index":"mobile_phones"}} {"id":1154,"name":"Meizu m3 note","brand":"Meizu","model":"m3 note","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":55.95,"price_usd":66.18} {"index":{"_index":"mobile_phones"}} {"id":1155,"name":"Reach Opulent","brand":"Reach","model":"Opulent","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":28.45,"price_usd":33.65} {"index":{"_index":"mobile_phones"}} {"id":1156,"name":"Asus Zenfone Go 5.0 LTE","brand":"Asus","model":"Zenfone Go 5.0 LTE","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1157,"name":"Gionee Pioneer P5 mini","brand":"Gionee","model":"Pioneer P5 mini","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1158,"name":"Samsung Galaxy A9 Pro","brand":"Samsung","model":"Galaxy A9 Pro","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":211.32,"price_usd":249.97} {"index":{"_index":"mobile_phones"}} {"id":1159,"name":"Intex Cloud Gem+","brand":"Intex","model":"Cloud Gem+","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1160,"name":"Samsung Galaxy J7 (2016)","brand":"Samsung","model":"Galaxy J7 (2016)","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":142.25,"price_usd":168.27} {"index":{"_index":"mobile_phones"}} {"id":1161,"name":"Samsung Galaxy J5 (2016)","brand":"Samsung","model":"Galaxy J5 (2016)","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1162,"name":"Vivo Y31L","brand":"Vivo","model":"Y31L","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":90.95,"price_usd":107.58} {"index":{"_index":"mobile_phones"}} {"id":1163,"name":"Reach Cogent","brand":"Reach","model":"Cogent","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.27,"price_usd":27.52} {"index":{"_index":"mobile_phones"}} {"id":1164,"name":"Lava V2s","brand":"Lava","model":"V2s","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1165,"name":"Videocon Krypton V50FG","brand":"Videocon","model":"Krypton V50FG","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":1166,"name":"Lava A52","brand":"Lava","model":"A52","battery_capacity_mAh":1200,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1167,"name":"Intex Cloud Force","brand":"Intex","model":"Cloud Force","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":35.25,"price_usd":41.7} {"index":{"_index":"mobile_phones"}} {"id":1168,"name":"Intex Aqua 4G Strong","brand":"Intex","model":"Aqua 4G Strong","battery_capacity_mAh":1700,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":768,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.75,"price_usd":81.32} {"index":{"_index":"mobile_phones"}} {"id":1169,"name":"Lava Flair S1","brand":"Lava","model":"Flair S1","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1170,"name":"InFocus Bingo 20 (M425)","brand":"InFocus","model":"Bingo 20 (M425)","battery_capacity_mAh":2300,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":850,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":1171,"name":"Panasonic T50","brand":"Panasonic","model":"T50","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":71.5,"price_usd":84.57} {"index":{"_index":"mobile_phones"}} {"id":1172,"name":"Intex Aqua Twist","brand":"Intex","model":"Aqua Twist","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1173,"name":"mPhone 8","brand":"mPhone","model":"8","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1174,"name":"mPhone 7 Plus","brand":"mPhone","model":"7 Plus","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":78.25,"price_usd":92.57} {"index":{"_index":"mobile_phones"}} {"id":1175,"name":"Intex Cloud Breeze","brand":"Intex","model":"Cloud Breeze","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1176,"name":"Lyf Wind 6","brand":"Lyf","model":"Wind 6","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1177,"name":"Blu Life Mark","brand":"Blu","model":"Life Mark","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1178,"name":"Zopo Speed 8","brand":"Zopo","model":"Speed 8","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.55,"price_usd":124.86} {"index":{"_index":"mobile_phones"}} {"id":1179,"name":"Xolo Era X","brand":"Xolo","model":"Era X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":48.22,"price_usd":57.04} {"index":{"_index":"mobile_phones"}} {"id":1180,"name":"Intex Aqua Fish","brand":"Intex","model":"Aqua Fish","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Sailfish","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":1181,"name":"ZTE Blade V7 Lite","brand":"ZTE","model":"Blade V7 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":40.61,"price_usd":48.04} {"index":{"_index":"mobile_phones"}} {"id":1182,"name":"Sony Xperia X","brand":"Sony","model":"Xperia X","battery_capacity_mAh":2620,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":1183,"name":"Sony Xperia XA","brand":"Sony","model":"Xperia XA","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":1184,"name":"HTC Desire 825","brand":"HTC","model":"Desire 825","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":83.45,"price_usd":98.71} {"index":{"_index":"mobile_phones"}} {"id":1185,"name":"HTC Desire 630","brand":"HTC","model":"Desire 630","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":108.93,"price_usd":128.85} {"index":{"_index":"mobile_phones"}} {"id":1186,"name":"HP Elite x3","brand":"HP","model":"Elite x3","battery_capacity_mAh":4150,"screen_size_inches":5.96,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":15,"front_camera":8,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":938.33,"price_usd":1109.96} {"index":{"_index":"mobile_phones"}} {"id":1187,"name":"Alcatel Idol 4","brand":"Alcatel","model":"Idol 4","battery_capacity_mAh":2610,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":1188,"name":"Intex Aqua Ace Mini","brand":"Intex","model":"Aqua Ace Mini","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":72.44,"price_usd":85.69} {"index":{"_index":"mobile_phones"}} {"id":1189,"name":"Swipe Konnect 5.1","brand":"Swipe","model":"Konnect 5.1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":1190,"name":"LG Stylus 2","brand":"LG","model":"Stylus 2","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1191,"name":"Intex Cloud Crystal 2.5D","brand":"Intex","model":"Cloud Crystal 2.5D","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":71.92,"price_usd":85.07} {"index":{"_index":"mobile_phones"}} {"id":1192,"name":"Intex Aqua Freedom","brand":"Intex","model":"Aqua Freedom","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":32.78,"price_usd":38.77} {"index":{"_index":"mobile_phones"}} {"id":1193,"name":"Microsoft Lumia 650","brand":"Microsoft","model":"Lumia 650","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":1194,"name":"LG X cam","brand":"LG","model":"X cam","battery_capacity_mAh":2520,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":1195,"name":"Intex Aqua Craze","brand":"Intex","model":"Aqua Craze","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1196,"name":"Intex Aqua Lite","brand":"Intex","model":"Aqua Lite","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1197,"name":"Lava X11","brand":"Lava","model":"X11","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.4,"price_usd":99.84} {"index":{"_index":"mobile_phones"}} {"id":1198,"name":"Lava A88","brand":"Lava","model":"A88","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.34,"price_usd":61.92} {"index":{"_index":"mobile_phones"}} {"id":1199,"name":"Lenovo Vibe P1 Turbo","brand":"Lenovo","model":"Vibe P1 Turbo","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":81.22,"price_usd":96.07} {"index":{"_index":"mobile_phones"}} {"id":1200,"name":"Lava A71","brand":"Lava","model":"A71","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1201,"name":"Intex Aqua Wing","brand":"Intex","model":"Aqua Wing","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1202,"name":"Intex Aqua Raze","brand":"Intex","model":"Aqua Raze","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1203,"name":"Panasonic P66 Mega","brand":"Panasonic","model":"P66 Mega","battery_capacity_mAh":3200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"No","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":56.04,"price_usd":66.3} {"index":{"_index":"mobile_phones"}} {"id":1204,"name":"Lyf Flame 1","brand":"Lyf","model":"Flame 1","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1205,"name":"Lava X3","brand":"Lava","model":"X3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1206,"name":"Zopo Hero 1","brand":"Zopo","model":"Hero 1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":1207,"name":"iBall Cobalt 5.5F Youva","brand":"iBall","model":"Cobalt 5.5F Youva","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":80.37,"price_usd":95.07} {"index":{"_index":"mobile_phones"}} {"id":1208,"name":"Micromax Canvas Juice 4","brand":"Micromax","model":"Canvas Juice 4","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.25,"price_usd":49.98} {"index":{"_index":"mobile_phones"}} {"id":1209,"name":"Vivo Y51L","brand":"Vivo","model":"Y51L","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":96.23,"price_usd":113.84} {"index":{"_index":"mobile_phones"}} {"id":1210,"name":"Lava V5","brand":"Lava","model":"V5","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":87.26,"price_usd":103.22} {"index":{"_index":"mobile_phones"}} {"id":1211,"name":"Lyf Water 2","brand":"Lyf","model":"Water 2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":81.97,"price_usd":96.96} {"index":{"_index":"mobile_phones"}} {"id":1212,"name":"Lyf Water 1","brand":"Lyf","model":"Water 1","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.77,"price_usd":60.05} {"index":{"_index":"mobile_phones"}} {"id":1213,"name":"Lenovo K5 Note","brand":"Lenovo","model":"K5 Note","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":1214,"name":"Panasonic Eluga Turbo","brand":"Panasonic","model":"Eluga Turbo","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":147.94,"price_usd":175.0} {"index":{"_index":"mobile_phones"}} {"id":1215,"name":"Swipe Virtue","brand":"Swipe","model":"Virtue","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"No","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1216,"name":"Lava P7","brand":"Lava","model":"P7","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":36.48,"price_usd":43.15} {"index":{"_index":"mobile_phones"}} {"id":1217,"name":"Intex Aqua Air II","brand":"Intex","model":"Aqua Air II","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":49.6,"price_usd":58.68} {"index":{"_index":"mobile_phones"}} {"id":1218,"name":"Lava Iris Atom","brand":"Lava","model":"Iris Atom","battery_capacity_mAh":1550,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":1219,"name":"Intex Cloud 4G Smart","brand":"Intex","model":"Cloud 4G Smart","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.52,"price_usd":59.76} {"index":{"_index":"mobile_phones"}} {"id":1220,"name":"Intex Cloud 3G Gem","brand":"Intex","model":"Cloud 3G Gem","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1221,"name":"Intex Cloud 3G Candy","brand":"Intex","model":"Cloud 3G Candy","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1222,"name":"Lenovo A7000 Turbo","brand":"Lenovo","model":"A7000 Turbo","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":148.07,"price_usd":175.15} {"index":{"_index":"mobile_phones"}} {"id":1223,"name":"Karbonn K9 Smart","brand":"Karbonn","model":"K9 Smart","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":49.6,"price_usd":58.68} {"index":{"_index":"mobile_phones"}} {"id":1224,"name":"Alcatel Pixi 4 (6)","brand":"Alcatel","model":"Pixi 4 (6)","battery_capacity_mAh":2580,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.28,"price_usd":50.02} {"index":{"_index":"mobile_phones"}} {"id":1225,"name":"LG K7","brand":"LG","model":"K7","battery_capacity_mAh":2125,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":10.51,"price_usd":12.44} {"index":{"_index":"mobile_phones"}} {"id":1226,"name":"LG K10","brand":"LG","model":"K10","battery_capacity_mAh":2300,"screen_size_inches":5.3,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":42.24,"price_usd":49.97} {"index":{"_index":"mobile_phones"}} {"id":1227,"name":"Intex Cloud Champ","brand":"Intex","model":"Cloud Champ","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":40.19,"price_usd":47.54} {"index":{"_index":"mobile_phones"}} {"id":1228,"name":"Lava Iris Atom 3","brand":"Lava","model":"Iris Atom 3","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":30.66,"price_usd":36.27} {"index":{"_index":"mobile_phones"}} {"id":1229,"name":"Intex Aqua Q7 Pro","brand":"Intex","model":"Aqua Q7 Pro","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":1230,"name":"Karbonn Titanium Moghul","brand":"Karbonn","model":"Titanium Moghul","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":92.01,"price_usd":108.85} {"index":{"_index":"mobile_phones"}} {"id":1231,"name":"Xolo One HD","brand":"Xolo","model":"One HD","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1232,"name":"Zen Cinemax 2","brand":"Zen","model":"Cinemax 2","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":39.55,"price_usd":46.78} {"index":{"_index":"mobile_phones"}} {"id":1233,"name":"Videocon Z55 Krypton","brand":"Videocon","model":"Z55 Krypton","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":31.2,"price_usd":36.91} {"index":{"_index":"mobile_phones"}} {"id":1234,"name":"Intex Aqua Star 4G","brand":"Intex","model":"Aqua Star 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":1235,"name":"Intex Cloud Cube","brand":"Intex","model":"Cloud Cube","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1236,"name":"Kult 10","brand":"Kult","model":"10","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1237,"name":"Micromax Canvas Pulse 4G","brand":"Micromax","model":"Canvas Pulse 4G","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":43.89,"price_usd":51.92} {"index":{"_index":"mobile_phones"}} {"id":1238,"name":"Asus ZenPad C 7.0 (Z170MG)","brand":"Asus","model":"ZenPad C 7.0 (Z170MG)","battery_capacity_mAh":3450,"screen_size_inches":7,"touchscreen":"No","resolution_x":1024,"resolution_y":600,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1239,"name":"Xiaomi Redmi Note Prime","brand":"Xiaomi","model":"Redmi Note Prime","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1240,"name":"iBall Andi 5.5H Weber","brand":"iBall","model":"Andi 5.5H Weber","battery_capacity_mAh":2200,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1241,"name":"Micromax Canvas Mega 4G","brand":"Micromax","model":"Canvas Mega 4G","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":1242,"name":"Micromax Canvas Fire 4G+","brand":"Micromax","model":"Canvas Fire 4G+","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1243,"name":"Gionee P5W","brand":"Gionee","model":"P5W","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1244,"name":"ZTE Blade A1","brand":"ZTE","model":"Blade A1","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":30.67,"price_usd":36.28} {"index":{"_index":"mobile_phones"}} {"id":1245,"name":"Panasonic Eluga Mark","brand":"Panasonic","model":"Eluga Mark","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1246,"name":"Samsung Galaxy A7 (2016)","brand":"Samsung","model":"Galaxy A7 (2016)","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1247,"name":"Videocon Z55 Delite","brand":"Videocon","model":"Z55 Delite","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":67.58,"price_usd":79.94} {"index":{"_index":"mobile_phones"}} {"id":1248,"name":"Videocon Infinium Z45 Amaze","brand":"Videocon","model":"Infinium Z45 Amaze","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1249,"name":"Micromax Canvas Pace 4G","brand":"Micromax","model":"Canvas Pace 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":1250,"name":"Lava X10","brand":"Lava","model":"X10","battery_capacity_mAh":2900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":1251,"name":"Intex Cloud Zest","brand":"Intex","model":"Cloud Zest","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1252,"name":"Lava Iris Atom 2X","brand":"Lava","model":"Iris Atom 2X","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1253,"name":"Samsung Galaxy J3 (6)","brand":"Samsung","model":"Galaxy J3 (6)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1254,"name":"Intex Aqua Air","brand":"Intex","model":"Aqua Air","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":43.26,"price_usd":51.17} {"index":{"_index":"mobile_phones"}} {"id":1255,"name":"Micromax Canvas Xpress 4G","brand":"Micromax","model":"Canvas Xpress 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":1256,"name":"Micromax Canvas Blaze 4G+","brand":"Micromax","model":"Canvas Blaze 4G+","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":1257,"name":"Intex Aqua Super","brand":"Intex","model":"Aqua Super","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":61.86,"price_usd":73.18} {"index":{"_index":"mobile_phones"}} {"id":1258,"name":"Intex Aqua Wave","brand":"Intex","model":"Aqua Wave","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1259,"name":"Intex Aqua Q7","brand":"Intex","model":"Aqua Q7","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1260,"name":"iBall Andi Sprinter 4G","brand":"iBall","model":"Andi Sprinter 4G","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":1261,"name":"Gionee S Plus","brand":"Gionee","model":"S Plus","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":68.64,"price_usd":81.2} {"index":{"_index":"mobile_phones"}} {"id":1262,"name":"InFocus M535","brand":"InFocus","model":"M535","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1263,"name":"HTC Desire 828 Dual SIM","brand":"HTC","model":"Desire 828 Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1264,"name":"HTC Desire 728G Dual SIM","brand":"HTC","model":"Desire 728G Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":122.54,"price_usd":144.95} {"index":{"_index":"mobile_phones"}} {"id":1265,"name":"Intex Aqua Young","brand":"Intex","model":"Aqua Young","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":1266,"name":"Intex Aqua Play","brand":"Intex","model":"Aqua Play","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1267,"name":"Xolo Black 1X","brand":"Xolo","model":"Black 1X","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1268,"name":"InFocus M260","brand":"InFocus","model":"M260","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.34,"price_usd":31.15} {"index":{"_index":"mobile_phones"}} {"id":1269,"name":"Karbonn Alfa A91 Power","brand":"Karbonn","model":"Alfa A91 Power","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":1270,"name":"Oppo Neo 7","brand":"Oppo","model":"Neo 7","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":1271,"name":"Samsung Galaxy On7","brand":"Samsung","model":"Galaxy On7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":105.52,"price_usd":124.82} {"index":{"_index":"mobile_phones"}} {"id":1272,"name":"Micromax Bolt Q332","brand":"Micromax","model":"Bolt Q332","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":2,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1273,"name":"Samsung Galaxy On5","brand":"Samsung","model":"Galaxy On5","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.23,"price_usd":58.24} {"index":{"_index":"mobile_phones"}} {"id":1274,"name":"Lenovo A1000","brand":"Lenovo","model":"A1000","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.54,"price_usd":44.4} {"index":{"_index":"mobile_phones"}} {"id":1275,"name":"Lenovo A6000 Shot","brand":"Lenovo","model":"A6000 Shot","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1276,"name":"Lava Iris Fuel F1","brand":"Lava","model":"Iris Fuel F1","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":92.01,"price_usd":108.85} {"index":{"_index":"mobile_phones"}} {"id":1277,"name":"Intex Aqua Life III","brand":"Intex","model":"Aqua Life III","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":56.05,"price_usd":66.31} {"index":{"_index":"mobile_phones"}} {"id":1278,"name":"Intex Cloud Swift","brand":"Intex","model":"Cloud Swift","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":98.36,"price_usd":116.35} {"index":{"_index":"mobile_phones"}} {"id":1279,"name":"Zopo Speed 7 Plus","brand":"Zopo","model":"Speed 7 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1280,"name":"Micromax Bolt S302","brand":"Micromax","model":"Bolt S302","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.69,"price_usd":28.02} {"index":{"_index":"mobile_phones"}} {"id":1281,"name":"Micromax Bolt Q331","brand":"Micromax","model":"Bolt Q331","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1282,"name":"Samsung Z3","brand":"Samsung","model":"Z3","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Tizen","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1283,"name":"Panasonic P65 Flash","brand":"Panasonic","model":"P65 Flash","battery_capacity_mAh":2910,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":1284,"name":"Panasonic P50 Idol","brand":"Panasonic","model":"P50 Idol","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":1285,"name":"ZTE Axon Mini","brand":"ZTE","model":"Axon Mini","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":62.4,"price_usd":73.81} {"index":{"_index":"mobile_phones"}} {"id":1286,"name":"iBall Andi 4.5C Magnifico","brand":"iBall","model":"Andi 4.5C Magnifico","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":40.61,"price_usd":48.04} {"index":{"_index":"mobile_phones"}} {"id":1287,"name":"Microsoft Lumia 550","brand":"Microsoft","model":"Lumia 550","battery_capacity_mAh":2100,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":57.09,"price_usd":67.53} {"index":{"_index":"mobile_phones"}} {"id":1288,"name":"Microsoft Lumia 950","brand":"Microsoft","model":"Lumia 950","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20,"front_camera":5,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":437.76,"price_usd":517.83} {"index":{"_index":"mobile_phones"}} {"id":1289,"name":"Microsoft Lumia 950 XL","brand":"Microsoft","model":"Lumia 950 XL","battery_capacity_mAh":3340,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20,"front_camera":5,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":264.4,"price_usd":312.76} {"index":{"_index":"mobile_phones"}} {"id":1290,"name":"Micromax Bolt Q339","brand":"Micromax","model":"Bolt Q339","battery_capacity_mAh":1650,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1291,"name":"LG V10","brand":"LG","model":"V10","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"Yes","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":1292,"name":"Videocon Infinium Z51 Punch","brand":"Videocon","model":"Infinium Z51 Punch","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":1,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":1293,"name":"Videocon Infinium Z51Q Star","brand":"Videocon","model":"Infinium Z51Q Star","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1294,"name":"Vivo Y15S","brand":"Vivo","model":"Y15S","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1295,"name":"Samsung Galaxy J1 Ace","brand":"Samsung","model":"Galaxy J1 Ace","battery_capacity_mAh":1800,"screen_size_inches":4.3,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.48,"price_usd":53.8} {"index":{"_index":"mobile_phones"}} {"id":1296,"name":"Vivo Y27L","brand":"Vivo","model":"Y27L","battery_capacity_mAh":2260,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.2,"price_usd":112.61} {"index":{"_index":"mobile_phones"}} {"id":1297,"name":"Micromax Canvas Play 4G","brand":"Micromax","model":"Canvas Play 4G","battery_capacity_mAh":2820,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1298,"name":"Lava Iris Fuel F1 Mini","brand":"Lava","model":"Iris Fuel F1 Mini","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1299,"name":"Micromax Canvas Blaze 4G","brand":"Micromax","model":"Canvas Blaze 4G","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":1300,"name":"Gionee Pioneer P3S","brand":"Gionee","model":"Pioneer P3S","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":485,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":1301,"name":"Micromax Bolt Q338","brand":"Micromax","model":"Bolt Q338","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.56,"price_usd":62.18} {"index":{"_index":"mobile_phones"}} {"id":1302,"name":"Intex Aqua Power II","brand":"Intex","model":"Aqua Power II","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1303,"name":"Micromax Canvas Juice 3+","brand":"Micromax","model":"Canvas Juice 3+","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1304,"name":"Intex Aqua Glam","brand":"Intex","model":"Aqua Glam","battery_capacity_mAh":1850,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.43,"price_usd":53.73} {"index":{"_index":"mobile_phones"}} {"id":1305,"name":"iBall Cobalt Solus 4G","brand":"iBall","model":"Cobalt Solus 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1306,"name":"Micromax Canvas Juice 3","brand":"Micromax","model":"Canvas Juice 3","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":1307,"name":"HTC Desire 728 Dual SIM","brand":"HTC","model":"Desire 728 Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1308,"name":"Lenovo Vibe P1m","brand":"Lenovo","model":"Vibe P1m","battery_capacity_mAh":3900,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1309,"name":"Sony Xperia Z5 Premium Dual","brand":"Sony","model":"Xperia Z5 Premium Dual","battery_capacity_mAh":3430,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":2160,"resolution_y":3840,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":608.14,"price_usd":719.38} {"index":{"_index":"mobile_phones"}} {"id":1310,"name":"Acer Liquid Z530","brand":"Acer","model":"Liquid Z530","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":60.81,"price_usd":71.94} {"index":{"_index":"mobile_phones"}} {"id":1311,"name":"Micromax Canvas Fire 4G","brand":"Micromax","model":"Canvas Fire 4G","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1312,"name":"Intex Cloud V","brand":"Intex","model":"Cloud V","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":1313,"name":"iBall Andi 4.5 O'Buddy","brand":"iBall","model":"Andi 4.5 O'Buddy","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":1,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1314,"name":"Videocon Z55 Dash","brand":"Videocon","model":"Z55 Dash","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1315,"name":"Intex Aqua Turbo 4G","brand":"Intex","model":"Aqua Turbo 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":59.75,"price_usd":70.67} {"index":{"_index":"mobile_phones"}} {"id":1316,"name":"Zopo Speed 7","brand":"Zopo","model":"Speed 7","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1317,"name":"Panasonic Eluga Switch","brand":"Panasonic","model":"Eluga Switch","battery_capacity_mAh":2910,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":1318,"name":"Intex Aqua 3G Neo","brand":"Intex","model":"Aqua 3G Neo","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1319,"name":"Lenovo A2010","brand":"Lenovo","model":"A2010","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":1320,"name":"Lava Flair P1i","brand":"Lava","model":"Flair P1i","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":400,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":23.5,"price_usd":27.8} {"index":{"_index":"mobile_phones"}} {"id":1321,"name":"Panasonic T45 4G","brand":"Panasonic","model":"T45 4G","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":49.18,"price_usd":58.18} {"index":{"_index":"mobile_phones"}} {"id":1322,"name":"Panasonic Eluga I2","brand":"Panasonic","model":"Eluga I2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":61.66,"price_usd":72.94} {"index":{"_index":"mobile_phones"}} {"id":1323,"name":"Panasonic Eluga L2","brand":"Panasonic","model":"Eluga L2","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1324,"name":"Lava Iris Atom 2","brand":"Lava","model":"Iris Atom 2","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1325,"name":"iBall Andi 5U Platino","brand":"iBall","model":"Andi 5U Platino","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1326,"name":"Intex Aqua Sense 5.0","brand":"Intex","model":"Aqua Sense 5.0","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":1327,"name":"Philips Xenium S309","brand":"Philips","model":"Xenium S309","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"No","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":1328,"name":"Intex Cloud Pace","brand":"Intex","model":"Cloud Pace","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1329,"name":"Blu Win HD LTE","brand":"Blu","model":"Win HD LTE","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Windows","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1330,"name":"Intex Aqua Q1+","brand":"Intex","model":"Aqua Q1+","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":47.05,"price_usd":55.66} {"index":{"_index":"mobile_phones"}} {"id":1331,"name":"Intex Aqua Dream II","brand":"Intex","model":"Aqua Dream II","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":1332,"name":"Asus ZenFone 2 Laser (ZE601KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE601KL)","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1333,"name":"Intex Cloud 4G Star","brand":"Intex","model":"Cloud 4G Star","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"No","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1334,"name":"Lava Iris X5 4G","brand":"Lava","model":"Iris X5 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1335,"name":"Asus ZenFone 2 Laser (ZE500KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE500KL)","battery_capacity_mAh":2070,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1336,"name":"Sony Xperia M5","brand":"Sony","model":"Xperia M5","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21.5,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1337,"name":"Sony Xperia C5 Ultra","brand":"Sony","model":"Xperia C5 Ultra","battery_capacity_mAh":2930,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":1338,"name":"Lava Iris X1 Selfie","brand":"Lava","model":"Iris X1 Selfie","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1339,"name":"InFocus M808","brand":"InFocus","model":"M808","battery_capacity_mAh":2450,"screen_size_inches":5.2,"touchscreen":"Yes","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":1,"3G":"Yes","4G":"Yes","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":1340,"name":"Panasonic Love T10","brand":"Panasonic","model":"Love T10","battery_capacity_mAh":1400,"screen_size_inches":3.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":21.15,"price_usd":25.02} {"index":{"_index":"mobile_phones"}} {"id":1341,"name":"iBall Andi HD6","brand":"iBall","model":"Andi HD6","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":52.88,"price_usd":62.55} {"index":{"_index":"mobile_phones"}} {"id":1342,"name":"Lava Flair Z1","brand":"Lava","model":"Flair Z1","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1343,"name":"Intex Aqua Y2 Power","brand":"Intex","model":"Aqua Y2 Power","battery_capacity_mAh":2900,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":1344,"name":"LG Max","brand":"LG","model":"Max","battery_capacity_mAh":2540,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1345,"name":"Karbonn Titanium Mach One Plus","brand":"Karbonn","model":"Titanium Mach One Plus","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1346,"name":"Panasonic T33","brand":"Panasonic","model":"T33","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1347,"name":"iBall Andi 3.5V Genius2","brand":"iBall","model":"Andi 3.5V Genius2","battery_capacity_mAh":1250,"screen_size_inches":3.5,"touchscreen":"Yes","resolution_x":320,"resolution_y":480,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1348,"name":"Spice XLife 406","brand":"Spice","model":"XLife 406","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":37.02,"price_usd":43.79} {"index":{"_index":"mobile_phones"}} {"id":1349,"name":"Micromax Bolt D303","brand":"Micromax","model":"Bolt D303","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.56,"price_usd":37.33} {"index":{"_index":"mobile_phones"}} {"id":1350,"name":"Vivo V1","brand":"Vivo","model":"V1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"Yes","price_gbp":161.82,"price_usd":191.42} {"index":{"_index":"mobile_phones"}} {"id":1351,"name":"Panasonic Eluga Z","brand":"Panasonic","model":"Eluga Z","battery_capacity_mAh":2050,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":58.48,"price_usd":69.17} {"index":{"_index":"mobile_phones"}} {"id":1352,"name":"Xolo Era","brand":"Xolo","model":"Era","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":1353,"name":"Intex Aqua Y2 Ultra","brand":"Intex","model":"Aqua Y2 Ultra","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1354,"name":"Intex Aqua A2","brand":"Intex","model":"Aqua A2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":1355,"name":"Videocon Infinium Z51 Nova+","brand":"Videocon","model":"Infinium Z51 Nova+","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.09,"price_usd":36.78} {"index":{"_index":"mobile_phones"}} {"id":1356,"name":"Intex Aqua Y4","brand":"Intex","model":"Aqua Y4","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"Yes","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"No","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1357,"name":"iBall Andi4 B20","brand":"iBall","model":"Andi4 B20","battery_capacity_mAh":1250,"screen_size_inches":4,"touchscreen":"Yes","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"Yes","bluetooth":"Yes","gps":"Yes","number_of_sims":2,"3G":"Yes","4G":"No","price_gbp":26.42,"price_usd":31.25} ================================================ FILE: datasets/coffee_sales.txt ================================================ PUT coffee_sales/_bulk {"index":{"_id":"1"}} {"date":"2022-09-01","sales":{"cappuccino":23,"latte":12,"americano":9,"tea":7},"price":{"cappuccino":2.50,"latte":2.40,"americano":2.10,"tea":1.50}} {"index":{"_id":"2"}} { "date":"2022-09-02","sales":{"cappuccino":40,"latte":16,"americano":19,"tea":15},"price":{"cappuccino":2.50,"latte":2.40,"americano":2.10,"tea":1.50}} ================================================ FILE: datasets/covid-26march2021.txt ================================================ POST covid/_bulk {"index":{}} {"country":"United States of America","date":"2021-03-26","cases":30853032,"deaths":561142,"recovered":23275268,"critical":8610} {"index":{}} {"country":"Brazil","date":"2021-03-26","cases":12407323,"deaths":307326,"recovered":10824095,"critical":8318} {"index":{}} {"country":"India","date":"2021-03-26","cases":11908373,"deaths":161275,"recovered":11292849,"critical":8944} {"index":{}} {"country":"Russia","date":"2021-03-26","cases":4501859,"deaths":97017,"recovered":4120161,"critical":2300} {"index":{}} {"country":"France","date":"2021-03-26","cases":4465956,"deaths":94275,"recovered":288062,"critical":4766} {"index":{}} {"country":"United kingdom","date":"2021-03-26","cases":4325315,"deaths":126515,"recovered":3768434,"critical":630} {"index":{}} {"country":"Italy","date":"2021-03-26","cases":3488619,"deaths":107256,"recovered":2814652,"critical":3628} {"index":{}} {"country":"Spain","date":"2021-03-26","cases":3255324,"deaths":75010,"recovered":3016247,"critical":1830} {"index":{}} {"country":"Turkey","date":"2021-03-26","cases":3149094,"deaths":30772,"recovered":2921037,"critical":1810} {"index":{}} {"country":"Germany","date":"2021-03-26","cases":2754002,"deaths":76303,"recovered":2467600,"critical":3209} ================================================ FILE: datasets/london_restaurants.txt ================================================ # Create a mapping for restaurants PUT restaurants { "mappings": { "properties": { "name":{ "type": "text" }, "town_centre":{ "type": "geo_point" }, "location":{ "type": "geo_point" }, "category":{ "type":"text" }, "hygenie_rating":{ "type": "short" }, "borough":{ "type":"text" } } } } # A big thanks to Shirang Dixit for his Kaggle's dataset: # https://www.kaggle.com/datasets/shrirangdixit/restaurants-and-venues-in-london?resource=download&select=top_100.csv # Index the restuarants data PUT _bulk {"index":{"_index":"restaurants","_id":"1"}} {"borough": "Barking and Dagenham", "name": "Costa Coffee", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5768901505657, 0.179497329179776", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"2"}} {"borough": "Barking and Dagenham", "name": "Ciao Bella", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5761031644746, 0.182819451657697", "category": "Italian Restaurant"} {"index":{"_index":"restaurants","_id":"3"}} {"borough": "Barking and Dagenham", "name": "Costa Coffee", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5764810641186, 0.182447859463851", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"4"}} {"borough": "Barking and Dagenham", "name": "Braza", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5763438553126, 0.181760001988972", "category": "Brazilian Restaurant"} {"index":{"_index":"restaurants","_id":"5"}} {"borough": "Barking and Dagenham", "name": "The Bull", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5795205127607, 0.182871095573334", "category": "Pub"} {"index":{"_index":"restaurants","_id":"6"}} {"borough": "Barking and Dagenham", "name": "Patisserie Valerie", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5764467677515, 0.179965973726707", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"7"}} {"borough": "Barking and Dagenham", "name": "Starbucks", "town_center": "51.574780001107, 0.174409970722365", "location": "51.576281, 0.181187", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"8"}} {"borough": "Barking and Dagenham", "name": "Teapot Cafe", "town_center": "51.574780001107, 0.174409970722365", "location": "51.579782, 0.182306", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"9"}} {"borough": "Barking and Dagenham", "name": "Harris + Hoole", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5656137812814, 0.191278187889649", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"10"}} {"borough": "Barking and Dagenham", "name": "Frankie & Benny's", "town_center": "51.574780001107, 0.174409970722365", "location": "51.5751804, 0.1801494", "category": "American Restaurant"} {"index":{"_index":"restaurants","_id":"11"}} {"borough": "Barnet", "name": "The King's Arms", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.525753907299, -0.0658676349732126", "category": "Pub"} {"index":{"_index":"restaurants","_id":"12"}} {"borough": "Barnet", "name": "Sam's Cafe", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5264242861641, -0.0650555900273512", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"13"}} {"borough": "Barnet", "name": "Brawn", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5289129240344, -0.0703129817333181", "category": "Restaurant"} {"index":{"_index":"restaurants","_id":"14"}} {"borough": "Barnet", "name": "Tas Firin", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5254584974656, -0.0702727253628311", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"15"}} {"borough": "Barnet", "name": "E Pellicci", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.526516, -0.063426", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"16"}} {"borough": "Barnet", "name": "Holy Shot", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5254297867875, -0.0704955175906381", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"17"}} {"borough": "Barnet", "name": "Well & Bucket", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5252935552737, -0.0709888374442932", "category": "Pub"} {"index":{"_index":"restaurants","_id":"18"}} {"borough": "Barnet", "name": "Jonestown", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5260919169767, -0.0679361253278925", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"19"}} {"borough": "Barnet", "name": "Beigel Bake", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.5245132556491, -0.0716434492960825", "category": "Bagel Shop"} {"index":{"_index":"restaurants","_id":"20"}} {"borough": "Barnet", "name": "The Carpenters Arms", "town_center": "51.527094989936, -0.0668257039632054", "location": "51.523927250026, -0.0674413496578882", "category": "Pub"} {"index":{"_index":"restaurants","_id":"21"}} {"borough": "Bexley", "name": "The Lale Restaurant", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4509414781371, 0.0514545861448455", "category": "Fast Food Restaurant"} {"index":{"_index":"restaurants","_id":"22"}} {"borough": "Bexley", "name": "Nando's", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.45054026, 0.05653644", "category": "Portuguese Restaurant"} {"index":{"_index":"restaurants","_id":"23"}} {"borough": "Bexley", "name": "Rixos", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.450678, 0.057724", "category": "Mediterranean Restaurant"} {"index":{"_index":"restaurants","_id":"24"}} {"borough": "Bexley", "name": "Costa Coffee", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.451008251248, 0.0541388278388066", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"25"}} {"borough": "Bexley", "name": "Eltham GPO", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4503454752311, 0.0540715508832256", "category": "Pub"} {"index":{"_index":"restaurants","_id":"26"}} {"borough": "Bexley", "name": "The Park Tavern", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4498344269546, 0.0543999993955841", "category": "Bar"} {"index":{"_index":"restaurants","_id":"27"}} {"borough": "Bexley", "name": "Oxleas Wood Cafe", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4665009464818, 0.0697064082304458", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"28"}} {"borough": "Bexley", "name": "Rising Sun", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4507943380767, 0.0585335705495846", "category": "Pub"} {"index":{"_index":"restaurants","_id":"29"}} {"borough": "Bexley", "name": "Greggs", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4509658813476, 0.0562703981995582", "category": "Bakery"} {"index":{"_index":"restaurants","_id":"30"}} {"borough": "Bexley", "name": "Ziyafet", "town_center": "51.4520777153566, 0.0699310359401914", "location": "51.4507589986404, 0.0579818639303895", "category": "Mediterranean Restaurant"} {"index":{"_index":"restaurants","_id":"31"}} {"borough": "Brent", "name": "Vero Caffe", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6151121664419, -0.190732068656857", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"32"}} {"borough": "Brent", "name": "Michaels", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6151839858547, -0.190852863254336", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"33"}} {"borough": "Brent", "name": "Divans", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6054713446698, -0.18784697192525", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"34"}} {"borough": "Brent", "name": "Tintico", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.601117071909, -0.193745059397798", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"35"}} {"borough": "Brent", "name": "Ishtah Restaurant", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6000001468419, -0.19599437713623", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"36"}} {"borough": "Brent", "name": "Beheshte Barin", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6044408380993, -0.18901225817288", "category": "Persian Restaurant"} {"index":{"_index":"restaurants","_id":"37"}} {"borough": "Brent", "name": "Bohemia Bar", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6153029887064, -0.176606810713685", "category": "Bar"} {"index":{"_index":"restaurants","_id":"38"}} {"borough": "Brent", "name": "Boulangerie Joie De Vie", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6140791870559, -0.176805054900558", "category": "Breakfast Spot"} {"index":{"_index":"restaurants","_id":"39"}} {"borough": "Brent", "name": "JOE & THE JUICE", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6012515, -0.1937675", "category": "Juice Bar"} {"index":{"_index":"restaurants","_id":"40"}} {"borough": "Brent", "name": "Durum", "town_center": "51.6097831150824, -0.194672008019029", "location": "51.6046125660528, -0.188849152912733", "category": "Middle Eastern Restaurant"} {"index":{"_index":"restaurants","_id":"41"}} {"borough": "Bromley", "name": "K\u82d4y\u861dm", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.6039089201188, -0.0679442988499194", "category": "Mediterranean Restaurant"} {"index":{"_index":"restaurants","_id":"42"}} {"borough": "Bromley", "name": "San Marco", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.5942556990959, -0.0700769248332533", "category": "Italian Restaurant"} {"index":{"_index":"restaurants","_id":"43"}} {"borough": "Bromley", "name": "The Beehive", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.592203, -0.069205", "category": "Pub"} {"index":{"_index":"restaurants","_id":"44"}} {"borough": "Bromley", "name": "Pressure Drop Brewery & Taproom", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.5905977319284, -0.0579861082470803", "category": "Brewery"} {"index":{"_index":"restaurants","_id":"45"}} {"borough": "Bromley", "name": "Beavertown Brewery", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.5910143775121, -0.0567056428947125", "category": "Brewery"} {"index":{"_index":"restaurants","_id":"46"}} {"borough": "Bromley", "name": "The Bricklayers Arms", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.6058591330067, -0.0681968627826005", "category": "Pub"} {"index":{"_index":"restaurants","_id":"47"}} {"borough": "Bromley", "name": "The Antwerp Arms", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.6017749589411, -0.0747621657183833", "category": "Pub"} {"index":{"_index":"restaurants","_id":"48"}} {"borough": "Bromley", "name": "Styx Bar", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.5894618157794, -0.0611187776416513", "category": "Bar"} {"index":{"_index":"restaurants","_id":"49"}} {"borough": "Bromley", "name": "Bill Nicholson Pub", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.6057869950186, -0.0617015153439127", "category": "Pub"} {"index":{"_index":"restaurants","_id":"50"}} {"borough": "Bromley", "name": "The High Cross", "town_center": "51.6015105745503, -0.0663650798170126", "location": "51.589317, -0.070183", "category": "Pub"} {"index":{"_index":"restaurants","_id":"51"}} {"borough": "Camden", "name": "Granger & Co.", "town_center": "51.53236, -0.127959999999973", "location": "51.53260599028, -0.125274774925295", "category": "Breakfast Spot"} {"index":{"_index":"restaurants","_id":"52"}} {"borough": "Camden", "name": "The Coal Office", "town_center": "51.53236, -0.127959999999973", "location": "51.5350334053233, -0.126354341029567", "category": "Middle Eastern Restaurant"} {"index":{"_index":"restaurants","_id":"53"}} {"borough": "Camden", "name": "German Gymnasium", "town_center": "51.53236, -0.127959999999973", "location": "51.5323924057199, -0.125266572012957", "category": "Modern European Restaurant"} {"index":{"_index":"restaurants","_id":"54"}} {"borough": "Camden", "name": "Dishoom", "town_center": "51.53236, -0.127959999999973", "location": "51.5360803511111, -0.125733423886154", "category": "Indian Restaurant"} {"index":{"_index":"restaurants","_id":"55"}} {"borough": "Camden", "name": "Caravan King's Cross", "town_center": "51.53236, -0.127959999999973", "location": "51.5353309005303, -0.125238941536818", "category": "Breakfast Spot"} {"index":{"_index":"restaurants","_id":"56"}} {"borough": "Camden", "name": "Redemption Roasters", "town_center": "51.53236, -0.127959999999973", "location": "51.53578653699, -0.125830995565926", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"57"}} {"borough": "Camden", "name": "Spiritland King's Cross", "town_center": "51.53236, -0.127959999999973", "location": "51.5365880173102, -0.125647249431435", "category": "Bar"} {"index":{"_index":"restaurants","_id":"58"}} {"borough": "Camden", "name": "Barrafina", "town_center": "51.53236, -0.127959999999973", "location": "51.5359001107097, -0.127014241297244", "category": "Tapas Restaurant"} {"index":{"_index":"restaurants","_id":"59"}} {"borough": "Camden", "name": "Pizza Union", "town_center": "51.53236, -0.127959999999973", "location": "51.5309843732385, -0.119933337078844", "category": "Pizza Place"} {"index":{"_index":"restaurants","_id":"60"}} {"borough": "Camden", "name": "Aux Pains de Papy", "town_center": "51.53236, -0.127959999999973", "location": "51.52934, -0.12030311", "category": "Bakery"} {"index":{"_index":"restaurants","_id":"61"}} {"borough": "Croydon", "name": "Forks & Green", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5864033288793, -0.0876568737106018", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"62"}} {"borough": "Croydon", "name": "San Marco", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5942556990959, -0.0700769248332533", "category": "Italian Restaurant"} {"index":{"_index":"restaurants","_id":"63"}} {"borough": "Croydon", "name": "The Beehive", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.592203, -0.069205", "category": "Pub"} {"index":{"_index":"restaurants","_id":"64"}} {"borough": "Croydon", "name": "True Craft", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5844548988647, -0.0759145443098913", "category": "Pub"} {"index":{"_index":"restaurants","_id":"65"}} {"borough": "Croydon", "name": "Big Bowl Noodle", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5890428491221, -0.0798050088275486", "category": "Chinese Restaurant"} {"index":{"_index":"restaurants","_id":"66"}} {"borough": "Croydon", "name": "Blighty Tottenham", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5857315913233, -0.071639098067246", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"67"}} {"borough": "Croydon", "name": "The High Cross", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.589317, -0.070183", "category": "Pub"} "index":{"_index":"restaurants","_id":"68"}} {"borough": "Croydon", "name": "Neighbours Fish Bar", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5936938448642, -0.078361531163436", "category": "Fast Food Restaurant"} {"index":{"_index":"restaurants","_id":"69"}} {"borough": "Croydon", "name": "The Westbury", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5934584725395, -0.0984119411285734", "category": "Pub"} {"index":{"_index":"restaurants","_id":"70"}} {"borough": "Croydon", "name": "Durak Tantuni", "town_center": "51.5934799851819, -0.0834199693442485", "location": "51.5863071648797, -0.0948641974566496", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"71"}} {"borough": "Ealing", "name": "WA Cafe", "town_center": "51.51406, -0.30072999999993", "location": "51.5159443047932, -0.302204197643989", "category": "Dessert Shop"} {"index":{"_index":"restaurants","_id":"72"}} {"borough": "Ealing", "name": "Electric Coffee Co.", "town_center": "51.51406, -0.30072999999993", "location": "51.5153911156112, -0.30229740345209", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"73"}} {"borough": "Ealing", "name": "Hare and Tortoise", "town_center": "51.51406, -0.30072999999993", "location": "51.515635, -0.302106", "category": "Noodle House"} {"index":{"_index":"restaurants","_id":"74"}} {"borough": "Ealing", "name": "The Drapers Arms", "town_center": "51.51406, -0.30072999999993", "location": "51.5116061052896, -0.305163115370252", "category": "Pub"} {"index":{"_index":"restaurants","_id":"75"}} {"borough": "Ealing", "name": "Pho", "town_center": "51.51406, -0.30072999999993", "location": "51.513200351339, -0.306250120386768", "category": "Vietnamese Restaurant"} {"index":{"_index":"restaurants","_id":"76"}} {"borough": "Ealing", "name": "Franco Manca", "town_center": "51.51406, -0.30072999999993", "location": "51.5129934137107, -0.306861265576397", "category": "Pizza Place"} {"index":{"_index":"restaurants","_id":"77"}} {"borough": "Ealing", "name": "Artisan Coffee", "town_center": "51.51406, -0.30072999999993", "location": "51.5130239121096, -0.306655060235716", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"78"}} {"borough": "Ealing", "name": "Bee Hive", "town_center": "51.51406, -0.30072999999993", "location": "51.5104353629262, -0.3054168881695", "category": "Cafe"} {"index":{"_index":"restaurants","_id":"79"}} {"borough": "Ealing", "name": "Turtle Bay", "town_center": "51.51406, -0.30072999999993", "location": "51.512064951366, -0.304737682171537", "category": "Caribbean Restaurant"} {"index":{"_index":"restaurants","_id":"80"}} {"borough": "Ealing", "name": "The Kings Arms", "town_center": "51.51406, -0.30072999999993", "location": "51.5109807572851, -0.302002674073637", "category": "Pub"} {"index":{"_index":"restaurants","_id":"81"}} {"borough": "Enfield", "name": "Toconoco", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5383104191455, -0.0780980601377977", "category": "Udon Restaurant"} {"index":{"_index":"restaurants","_id":"82"}} {"borough": "Enfield", "name": "Chick 'n' Sours", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5412919201058, -0.0763088119457662", "category": "Fried Chicken Joint"} {"index":{"_index":"restaurants","_id":"83"}} {"borough": "Enfield", "name": "Berber & Q", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.536882, -0.07581", "category": "Middle Eastern Restaurant"} {"index":{"_index":"restaurants","_id":"84"}} {"borough": "Enfield", "name": "Towpath Cafe", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.537169, -0.08118", "category": "Coffee Shop"} {"index":{"_index":"restaurants","_id":"85"}} {"borough": "Enfield", "name": "Arepa & Co", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5370471235717, -0.0801467669382093", "category": "Arepa Restaurant"} {"index":{"_index":"restaurants","_id":"86"}} {"borough": "Enfield", "name": "The Scolt Head", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5431308529259, -0.0815900760000717", "category": "Pub"} {"index":{"_index":"restaurants","_id":"87"}} {"borough": "Enfield", "name": "Madame Pigg", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.543389, -0.075859", "category": "Restaurant"} {"index":{"_index":"restaurants","_id":"88"}} {"borough": "Enfield", "name": "Andu's cafe", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5445198364757, -0.0759062189011869", "category": "Ethiopian Restaurant"} {"index":{"_index":"restaurants","_id":"89"}} {"borough": "Enfield", "name": "Better Health Bakery", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.5373758194978, -0.0751918750572799", "category": "Bakery"} {"index":{"_index":"restaurants","_id":"90"}} {"borough": "Enfield", "name": "Signature Brew Taproom & Venue", "town_center": "51.5400236215167, -0.0775021537472357", "location": "51.536617, -0.07570233", "category": "Beer Bar"} {"index":{"_index":"restaurants","_id":"91"}} {"borough": "Greenwich", "name": "Cutty Sark Tavern", "town_center": "51.48454, 0.00275000000004865", "location": "51.4864158641669, -0.000485650977134305", "category": "Pub"} {"index":{"_index":"restaurants","_id":"92"}} {"borough": "Greenwich", "name": "Midpoint", "town_center": "51.48454, 0.00275000000004865", "location": "51.486043, -0.000911", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"93"}} {"borough": "Greenwich", "name": "Sefa", "town_center": "51.48454, 0.00275000000004865", "location": "51.4845238644171, 0.00253671792443989", "category": "Turkish Restaurant"} {"index":{"_index":"restaurants","_id":"94"}} {"borough": "Greenwich", "name": "Zaibatsu", "town_center": "51.48454, 0.00275000000004865", "location": "51.4840949352715, 0.00137609013534067", "category": "Japanese Restaurant"} {"index":{"_index":"restaurants","_id":"95"}} {"borough": "Greenwich", "name": "The Plume of Feathers", "town_center": "51.48454, 0.00275000000004865", "location": "51.4819450403517, -0.00112598463407319", "category": "Pub"} {"index":{"_index":"restaurants","_id":"96"}} {"borough": "Greenwich", "name": "Mountain View Greenwich", "town_center": "51.48454, 0.00275000000004865", "location": "51.484824, 0.003913", "category": "Indian Restaurant"} {"index":{"_index":"restaurants","_id":"97"}} {"borough": "Greenwich", "name": "Effes Meze", "town_center": "51.48454, 0.00275000000004865", "location": "51.4850160366829, 0.00420840980734031", "category": "Mediterranean Restaurant"} {"index":{"_index":"restaurants","_id":"98"}} {"borough": "Greenwich", "name": "Theatre of Wine", "town_center": "51.48454, 0.00275000000004865", "location": "51.4838404206285, 0.000603263673400172", "category": "Wine Shop"} {"index":{"_index":"restaurants","_id":"99"}} {"borough": "Greenwich", "name": "River Ale House", "town_center": "51.48454, 0.00275000000004865", "location": "51.4861666603242, 0.0133654475212097", "category": "Pub"} {"index":{"_index":"restaurants","_id":"100"}} {"borough": "Greenwich", "name": "Meantime Brewing Company", "town_center": "51.48454, 0.00275000000004865", "location": "51.4895678225253, 0.00857507908913158", "category": "Brewery"} ================================================ FILE: datasets/mobile_phones_data_bulk.json ================================================ PUT _bulk {"index":{"_index":"mobile_phones"}} {"id":1,"name":"Realme X2 Pro","brand":"Realme","model":"X2 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":2,"name":"iPhone 11 Pro Max","brand":"Apple","model":"iPhone 11 Pro Max","battery_capacity_mAh":3969,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":1242,"resolution_y":2688,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":1130.62,"price_usd":1337.42} {"index":{"_index":"mobile_phones"}} {"id":3,"name":"iPhone 11","brand":"Apple","model":"iPhone 11","battery_capacity_mAh":3110,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":828,"resolution_y":1792,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":665.26,"price_usd":786.94} {"index":{"_index":"mobile_phones"}} {"id":4,"name":"LG G8X ThinQ","brand":"LG","model":"G8X ThinQ","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":528.71,"price_usd":625.42} {"index":{"_index":"mobile_phones"}} {"id":5,"name":"OnePlus 7T","brand":"OnePlus","model":"7T","battery_capacity_mAh":3800,"screen_size_inches":6.55,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":369.43,"price_usd":437.01} {"index":{"_index":"mobile_phones"}} {"id":6,"name":"OnePlus 7T Pro","brand":"OnePlus","model":"7T Pro","battery_capacity_mAh":4085,"screen_size_inches":6.67,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":560.44,"price_usd":662.96} {"index":{"_index":"mobile_phones"}} {"id":7,"name":"Samsung Galaxy falsete 10+","brand":"Samsung","model":"Galaxy falsete 10+","battery_capacity_mAh":4300,"screen_size_inches":6.8,"touchscreen":"true","resolution_x":1440,"resolution_y":3040,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":842.93,"price_usd":997.11} {"index":{"_index":"mobile_phones"}} {"id":8,"name":"Asus ROG Phone 2","brand":"Asus","model":"ROG Phone 2","battery_capacity_mAh":6000,"screen_size_inches":6.59,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":9,"name":"Xiaomi Redmi K20 Pro","brand":"Xiaomi","model":"Redmi K20 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":245.27,"price_usd":290.13} {"index":{"_index":"mobile_phones"}} {"id":10,"name":"Oppo K3","brand":"Oppo","model":"K3","battery_capacity_mAh":3765,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":253.73,"price_usd":300.14} {"index":{"_index":"mobile_phones"}} {"id":11,"name":"Realme X","brand":"Realme","model":"X","battery_capacity_mAh":3765,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":12,"name":"Xiaomi Redmi K20","brand":"Xiaomi","model":"Redmi K20","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":203.93,"price_usd":241.24} {"index":{"_index":"mobile_phones"}} {"id":13,"name":"OnePlus 7 Pro","brand":"OnePlus","model":"7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.67,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":423.0,"price_usd":500.38} {"index":{"_index":"mobile_phones"}} {"id":14,"name":"Oppo Refalse 10x Zoom","brand":"Oppo","model":"Refalse 10x Zoom","battery_capacity_mAh":4065,"screen_size_inches":6.6,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":391.22,"price_usd":462.78} {"index":{"_index":"mobile_phones"}} {"id":15,"name":"Realme 3 Pro","brand":"Realme","model":"3 Pro","battery_capacity_mAh":4045,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":16,"name":"Huawei P30 Pro","brand":"Huawei","model":"P30 Pro","battery_capacity_mAh":4200,"screen_size_inches":6.47,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":40,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":574.09,"price_usd":679.09} {"index":{"_index":"mobile_phones"}} {"id":17,"name":"Redmi falsete 7 Pro","brand":"Xiaomi","model":"Redmi falsete 7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":103.64,"price_usd":122.59} {"index":{"_index":"mobile_phones"}} {"id":18,"name":"Huawei Mate 20 Pro","brand":"Huawei","model":"Mate 20 Pro","battery_capacity_mAh":4200,"screen_size_inches":6.39,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":40,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":676.78,"price_usd":800.58} {"index":{"_index":"mobile_phones"}} {"id":19,"name":"LG V40 ThinQ","brand":"LG","model":"V40 ThinQ","battery_capacity_mAh":3300,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":20,"name":"OnePlus 6T","brand":"OnePlus","model":"6T","battery_capacity_mAh":3700,"screen_size_inches":6.41,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":338.43,"price_usd":400.34} {"index":{"_index":"mobile_phones"}} {"id":21,"name":"Apple iPhone XR","brand":"Apple","model":"iPhone XR","battery_capacity_mAh":2942,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":828,"resolution_y":1792,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":481.22,"price_usd":569.24} {"index":{"_index":"mobile_phones"}} {"id":22,"name":"Apple iPhone XS Max","brand":"Apple","model":"iPhone XS Max","battery_capacity_mAh":2658,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":1242,"resolution_y":2688,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":23,"name":"Apple iPhone XS","brand":"Apple","model":"iPhone XS","battery_capacity_mAh":2658,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":634.57,"price_usd":750.64} {"index":{"_index":"mobile_phones"}} {"id":24,"name":"Google Pixel 3 XL","brand":"Google","model":"Pixel 3 XL","battery_capacity_mAh":3430,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":507.56,"price_usd":600.4} {"index":{"_index":"mobile_phones"}} {"id":25,"name":"Google Pixel 3","brand":"Google","model":"Pixel 3","battery_capacity_mAh":2915,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":26,"name":"Asus ROG Phone","brand":"Asus","model":"ROG Phone","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":27,"name":"Samsung Galaxy falsete 9","brand":"Samsung","model":"Galaxy falsete 9","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":602.85,"price_usd":713.11} {"index":{"_index":"mobile_phones"}} {"id":28,"name":"LG G7+ ThinQ","brand":"LG","model":"G7+ ThinQ","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":401.89,"price_usd":475.4} {"index":{"_index":"mobile_phones"}} {"id":29,"name":"Asus ZenFone Max Pro M1","brand":"Asus","model":"ZenFone Max Pro M1","battery_capacity_mAh":5000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":30,"name":"Huawei P20 Pro","brand":"Huawei","model":"P20 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":1080,"resolution_y":2240,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":40,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":528.71,"price_usd":625.42} {"index":{"_index":"mobile_phones"}} {"id":31,"name":"OnePlus 6","brand":"OnePlus","model":"6","battery_capacity_mAh":3300,"screen_size_inches":6.28,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":32,"name":"Asus ZenFone 5Z (ZS620KL)","brand":"Asus","model":"ZenFone 5Z (ZS620KL)","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":200.94,"price_usd":237.7} {"index":{"_index":"mobile_phones"}} {"id":33,"name":"Redmi falsete 5 Pro","brand":"Xiaomi","model":"Redmi falsete 5 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":98.88,"price_usd":116.96} {"index":{"_index":"mobile_phones"}} {"id":34,"name":"falsekia 7 Plus","brand":"falsekia","model":"7 Plus","battery_capacity_mAh":3800,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":35,"name":"Samsung Galaxy S9+","brand":"Samsung","model":"Galaxy S9+","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":36,"name":"Samsung Galaxy S9","brand":"Samsung","model":"Galaxy S9","battery_capacity_mAh":3000,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":37,"name":"HTC U11+","brand":"HTC","model":"U11+","battery_capacity_mAh":3930,"screen_size_inches":6,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":560.44,"price_usd":662.96} {"index":{"_index":"mobile_phones"}} {"id":38,"name":"Samsung Galaxy falsete 8","brand":"Samsung","model":"Galaxy falsete 8","battery_capacity_mAh":3300,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":528.81,"price_usd":625.53} {"index":{"_index":"mobile_phones"}} {"id":39,"name":"Apple iPhone 8","brand":"Apple","model":"iPhone 8","battery_capacity_mAh":1821,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":750,"resolution_y":1334,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":391.32,"price_usd":462.89} {"index":{"_index":"mobile_phones"}} {"id":40,"name":"Apple iPhone 8 Plus","brand":"Apple","model":"iPhone 8 Plus","battery_capacity_mAh":2691,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":497.09,"price_usd":588.01} {"index":{"_index":"mobile_phones"}} {"id":41,"name":"Apple iPhone X","brand":"Apple","model":"iPhone X","battery_capacity_mAh":2716,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":42,"name":"Motorola Moto Z2 Force","brand":"Motorola","model":"Moto Z2 Force","battery_capacity_mAh":2730,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":43,"name":"HTC U11","brand":"HTC","model":"U11","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":571.02,"price_usd":675.47} {"index":{"_index":"mobile_phones"}} {"id":44,"name":"falsekia 8","brand":"falsekia","model":"8","battery_capacity_mAh":3090,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.58,"price_usd":187.59} {"index":{"_index":"mobile_phones"}} {"id":45,"name":"Samsung Galaxy S8+","brand":"Samsung","model":"Galaxy S8+","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":317.29,"price_usd":375.33} {"index":{"_index":"mobile_phones"}} {"id":46,"name":"Samsung Galaxy S8","brand":"Samsung","model":"Galaxy S8","battery_capacity_mAh":3000,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1440,"resolution_y":2960,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":285.5,"price_usd":337.72} {"index":{"_index":"mobile_phones"}} {"id":47,"name":"LG G6","brand":"LG","model":"G6","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2880,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":253.73,"price_usd":300.14} {"index":{"_index":"mobile_phones"}} {"id":48,"name":"OnePlus 3T","brand":"OnePlus","model":"3T","battery_capacity_mAh":3400,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":49,"name":"Samsung Galaxy C9 Pro","brand":"Samsung","model":"Galaxy C9 Pro","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":50,"name":"Google Pixel XL","brand":"Google","model":"Pixel XL","battery_capacity_mAh":3450,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":327.76,"price_usd":387.71} {"index":{"_index":"mobile_phones"}} {"id":51,"name":"Apple iPhone 7 Plus","brand":"Apple","model":"iPhone 7 Plus","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":52,"name":"Apple iPhone 7","brand":"Apple","model":"iPhone 7","battery_capacity_mAh":1960,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":750,"resolution_y":1334,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":7,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":53,"name":"Hofalser 8","brand":"Hofalser","model":"8","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":214.13,"price_usd":253.3} {"index":{"_index":"mobile_phones"}} {"id":54,"name":"OnePlus 3","brand":"OnePlus","model":"3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":55,"name":"Asus ZenFone 3 Deluxe (ZS570KL)","brand":"Asus","model":"ZenFone 3 Deluxe (ZS570KL)","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":256,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":475.93,"price_usd":562.98} {"index":{"_index":"mobile_phones"}} {"id":56,"name":"Xiaomi Mi 5","brand":"Xiaomi","model":"Mi 5","battery_capacity_mAh":3000,"screen_size_inches":5.15,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":264.4,"price_usd":312.76} {"index":{"_index":"mobile_phones"}} {"id":57,"name":"Samsung Galaxy S7 Edge","brand":"Samsung","model":"Galaxy S7 Edge","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":423.01,"price_usd":500.39} {"index":{"_index":"mobile_phones"}} {"id":58,"name":"Samsung Galaxy S7","brand":"Samsung","model":"Galaxy S7","battery_capacity_mAh":3000,"screen_size_inches":5.1,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":59,"name":"Motorola Moto X Force","brand":"Motorola","model":"Moto X Force","battery_capacity_mAh":3760,"screen_size_inches":5.4,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":73.97,"price_usd":87.5} {"index":{"_index":"mobile_phones"}} {"id":60,"name":"Google Nexus 6P","brand":"Huawei","model":"Google Nexus 6P","battery_capacity_mAh":3450,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":454.76,"price_usd":537.95} {"index":{"_index":"mobile_phones"}} {"id":61,"name":"Apple iPhone 6s Plus","brand":"Apple","model":"iPhone 6s Plus","battery_capacity_mAh":2750,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":62,"name":"Yu Yureka Plus","brand":"Yu","model":"reka Plus","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.41,"price_usd":75.0} {"index":{"_index":"mobile_phones"}} {"id":63,"name":"Samsung Galaxy A8","brand":"Samsung","model":"Galaxy A8","battery_capacity_mAh":3050,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":77.2,"price_usd":91.32} {"index":{"_index":"mobile_phones"}} {"id":64,"name":"Samsung Galaxy S6","brand":"Samsung","model":"Galaxy S6","battery_capacity_mAh":2550,"screen_size_inches":5.1,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":65,"name":"Yu Yureka","brand":"Yu","model":"reka","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":66,"name":"Xiaomi Redmi falsete","brand":"Xiaomi","model":"Redmi falsete","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":67,"name":"Realme C3","brand":"Realme","model":"C3","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":68,"name":"Poco X2","brand":"Poco","model":"X2","battery_capacity_mAh":4500,"screen_size_inches":6.67,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":69,"name":"Samsung Galaxy S10 Lite","brand":"Samsung","model":"Galaxy S10 Lite","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":70,"name":"Realme 5i","brand":"Realme","model":"5i","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":71,"name":"Samsung Galaxy falsete 10 Lite","brand":"Samsung","model":"Galaxy falsete 10 Lite","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":412.47,"price_usd":487.91} {"index":{"_index":"mobile_phones"}} {"id":72,"name":"Vivo V17","brand":"Vivo","model":"V17","battery_capacity_mAh":4500,"screen_size_inches":6.44,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":223.69,"price_usd":264.61} {"index":{"_index":"mobile_phones"}} {"id":73,"name":"Vivo U20","brand":"Vivo","model":"U20","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":74,"name":"Realme 5s","brand":"Realme","model":"5s","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":75,"name":"Realme X2","brand":"Realme","model":"X2","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":64,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":76,"name":"Vivo V17 Pro","brand":"Vivo","model":"V17 Pro","battery_capacity_mAh":4100,"screen_size_inches":6.44,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":277.31,"price_usd":328.04} {"index":{"_index":"mobile_phones"}} {"id":77,"name":"Nubia Red Magic 3S","brand":"Nubia","model":"Red Magic 3S","battery_capacity_mAh":5000,"screen_size_inches":6.65,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":507.66,"price_usd":600.51} {"index":{"_index":"mobile_phones"}} {"id":78,"name":"Samsung Galaxy M30s","brand":"Samsung","model":"Galaxy M30s","battery_capacity_mAh":6000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":79,"name":"Vivo Z1x","brand":"Vivo","model":"Z1x","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":80,"name":"Oppo Refalse 2Z","brand":"Oppo","model":"Refalse 2Z","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":244.32,"price_usd":289.0} {"index":{"_index":"mobile_phones"}} {"id":81,"name":"Realme XT","brand":"Realme","model":"XT","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":64,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":82,"name":"Redmi falsete 8 Pro","brand":"Xiaomi","model":"Redmi falsete 8 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":64,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":83,"name":"falsekia 7.2","brand":"falsekia","model":"7.2","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":162.63,"price_usd":192.38} {"index":{"_index":"mobile_phones"}} {"id":84,"name":"Samsung Galaxy A50s","brand":"Samsung","model":"Galaxy A50s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":176.1,"price_usd":208.31} {"index":{"_index":"mobile_phones"}} {"id":85,"name":"Realme 5 Pro","brand":"Realme","model":"5 Pro","battery_capacity_mAh":4035,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":86,"name":"Realme 5","brand":"Realme","model":"5","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":90.96,"price_usd":107.59} {"index":{"_index":"mobile_phones"}} {"id":87,"name":"Vivo Z1 Pro","brand":"Vivo","model":"Z1 Pro","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":88,"name":"Xiaomi Mi A3","brand":"Xiaomi","model":"Mi A3","battery_capacity_mAh":4030,"screen_size_inches":6.08,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":125.28,"price_usd":148.19} {"index":{"_index":"mobile_phones"}} {"id":89,"name":"Asus 6Z","brand":"Asus","model":"6Z","battery_capacity_mAh":5000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":48,"front_camera":48,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":90,"name":"Samsung Galaxy M40","brand":"Samsung","model":"Galaxy M40","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":32,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":178.52,"price_usd":211.17} {"index":{"_index":"mobile_phones"}} {"id":91,"name":"Redmi falsete 7S","brand":"Xiaomi","model":"Redmi falsete 7S","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":91.48,"price_usd":108.21} {"index":{"_index":"mobile_phones"}} {"id":92,"name":"Motorola One Vision","brand":"Motorola","model":"One Vision","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":144.79,"price_usd":171.27} {"index":{"_index":"mobile_phones"}} {"id":93,"name":"Nubia Red Magic 3","brand":"Nubia","model":"Red Magic 3","battery_capacity_mAh":5000,"screen_size_inches":6.65,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":380.74,"price_usd":450.38} {"index":{"_index":"mobile_phones"}} {"id":94,"name":"Oppo A9","brand":"Oppo","model":"A9","battery_capacity_mAh":4020,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":95,"name":"Google Pixel 3a XL","brand":"Google","model":"Pixel 3a XL","battery_capacity_mAh":3700,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":370.16,"price_usd":437.87} {"index":{"_index":"mobile_phones"}} {"id":96,"name":"Samsung Galaxy A70","brand":"Samsung","model":"Galaxy A70","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":32,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":235.84,"price_usd":278.98} {"index":{"_index":"mobile_phones"}} {"id":97,"name":"Black Shark 2","brand":"Black Shark","model":"2","battery_capacity_mAh":4000,"screen_size_inches":6.39,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":98,"name":"OnePlus 7","brand":"OnePlus","model":"7","battery_capacity_mAh":3700,"screen_size_inches":6.41,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":99,"name":"LG G8s ThinQ","brand":"LG","model":"G8s ThinQ","battery_capacity_mAh":3550,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1080,"resolution_y":2248,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":422.95,"price_usd":500.31} {"index":{"_index":"mobile_phones"}} {"id":100,"name":"Vivo V15 Pro","brand":"Vivo","model":"V15 Pro","battery_capacity_mAh":3700,"screen_size_inches":6.39,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.09,"price_usd":224.86} {"index":{"_index":"mobile_phones"}} {"id":101,"name":"Redmi falsete 7","brand":"Xiaomi","model":"Redmi falsete 7","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":102.58,"price_usd":121.34} {"index":{"_index":"mobile_phones"}} {"id":102,"name":"Xiaomi Redmi 7","brand":"Xiaomi","model":"Redmi 7","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":77.55,"price_usd":91.73} {"index":{"_index":"mobile_phones"}} {"id":103,"name":"Samsung Galaxy M20","brand":"Samsung","model":"Galaxy M20","battery_capacity_mAh":5000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"false","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":104,"name":"Samsung Galaxy M30","brand":"Samsung","model":"Galaxy M30","battery_capacity_mAh":5000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":105,"name":"Hofalser View 20","brand":"Hofalser","model":"View 20","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2310,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":265.68,"price_usd":314.27} {"index":{"_index":"mobile_phones"}} {"id":106,"name":"Asus ZenFone Max Pro M2","brand":"Asus","model":"ZenFone Max Pro M2","battery_capacity_mAh":5000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":107,"name":"Google Pixel 3a","brand":"Google","model":"Pixel 3a","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"true","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":327.86,"price_usd":387.83} {"index":{"_index":"mobile_phones"}} {"id":108,"name":"Realme U1","brand":"Realme","model":"U1","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":109,"name":"Hofalser 10 Lite","brand":"Hofalser","model":"10 Lite","battery_capacity_mAh":3400,"screen_size_inches":6.21,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":110,"name":"falsekia 8.1","brand":"falsekia","model":"8.1","battery_capacity_mAh":3500,"screen_size_inches":6.18,"touchscreen":"true","resolution_x":1080,"resolution_y":2244,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.38,"price_usd":225.2} {"index":{"_index":"mobile_phones"}} {"id":111,"name":"Samsung Galaxy A9 (2018)","brand":"Samsung","model":"Galaxy A9 (2018)","battery_capacity_mAh":3800,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":24,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":232.68,"price_usd":275.24} {"index":{"_index":"mobile_phones"}} {"id":112,"name":"Oppo K1","brand":"Oppo","model":"K1","battery_capacity_mAh":3600,"screen_size_inches":6.41,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":113,"name":"falsekia 7.1","brand":"falsekia","model":"7.1","battery_capacity_mAh":3060,"screen_size_inches":5.84,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":125.86,"price_usd":148.88} {"index":{"_index":"mobile_phones"}} {"id":114,"name":"Realme 2 Pro","brand":"Realme","model":"2 Pro","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":124.48,"price_usd":147.25} {"index":{"_index":"mobile_phones"}} {"id":115,"name":"Vivo V9 Pro","brand":"Vivo","model":"V9 Pro","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":174.41,"price_usd":206.31} {"index":{"_index":"mobile_phones"}} {"id":116,"name":"Samsung Galaxy A7 (2018)","brand":"Samsung","model":"Galaxy A7 (2018)","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":24,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":174.41,"price_usd":206.31} {"index":{"_index":"mobile_phones"}} {"id":117,"name":"Xiaomi Redmi falsete 6 Pro","brand":"Xiaomi","model":"Redmi falsete 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":101.32,"price_usd":119.85} {"index":{"_index":"mobile_phones"}} {"id":118,"name":"Vivo V11 Pro","brand":"Vivo","model":"V11 Pro","battery_capacity_mAh":3400,"screen_size_inches":6.41,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":119,"name":"Oppo R17 Pro","brand":"Oppo","model":"R17 Pro","battery_capacity_mAh":3700,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":225.27,"price_usd":266.47} {"index":{"_index":"mobile_phones"}} {"id":120,"name":"falsekia 5.1 Plus","brand":"falsekia","model":"5.1 Plus","battery_capacity_mAh":3060,"screen_size_inches":5.86,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":121,"name":"Hofalser 8X","brand":"Hofalser","model":"8X","battery_capacity_mAh":3750,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":122,"name":"Poco F1","brand":"Poco","model":"F1","battery_capacity_mAh":4000,"screen_size_inches":6.18,"touchscreen":"true","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":123,"name":"falsekia 6.1 Plus","brand":"falsekia","model":"6.1 Plus","battery_capacity_mAh":3060,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":124,"name":"Vivo Nex","brand":"Vivo","model":"Nex","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"true","resolution_x":1080,"resolution_y":2316,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":125,"name":"Oppo Find X","brand":"Oppo","model":"Find X","battery_capacity_mAh":3730,"screen_size_inches":6.42,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":624.96,"price_usd":739.27} {"index":{"_index":"mobile_phones"}} {"id":126,"name":"Hofalser Play","brand":"Hofalser","model":"Play","battery_capacity_mAh":3750,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.49,"price_usd":225.33} {"index":{"_index":"mobile_phones"}} {"id":127,"name":"Realme 1","brand":"Realme","model":"1","battery_capacity_mAh":3410,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":108.93,"price_usd":128.85} {"index":{"_index":"mobile_phones"}} {"id":128,"name":"Xiaomi Mi A2","brand":"Xiaomi","model":"Mi A2","battery_capacity_mAh":3000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":129,"name":"Hofalser 10","brand":"Hofalser","model":"10","battery_capacity_mAh":3400,"screen_size_inches":5.84,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.69,"price_usd":212.56} {"index":{"_index":"mobile_phones"}} {"id":130,"name":"Oppo F7","brand":"Oppo","model":"F7","battery_capacity_mAh":3400,"screen_size_inches":6.23,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":200.85,"price_usd":237.58} {"index":{"_index":"mobile_phones"}} {"id":131,"name":"Vivo X21","brand":"Vivo","model":"X21","battery_capacity_mAh":3200,"screen_size_inches":6.28,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":193.44,"price_usd":228.83} {"index":{"_index":"mobile_phones"}} {"id":132,"name":"falsekia 8 Sirocco","brand":"falsekia","model":"8 Sirocco","battery_capacity_mAh":3260,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":133,"name":"Infinix Hot S3","brand":"Infinix","model":"Hot S3","battery_capacity_mAh":4000,"screen_size_inches":5.65,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":134,"name":"falsekia 6.1","brand":"falsekia","model":"6.1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":93.59,"price_usd":110.71} {"index":{"_index":"mobile_phones"}} {"id":135,"name":"Hofalser View 10","brand":"Hofalser","model":"View 10","battery_capacity_mAh":3750,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":168.15,"price_usd":198.91} {"index":{"_index":"mobile_phones"}} {"id":136,"name":"Infinix Zero 5 Pro","brand":"Infinix","model":"Zero 5 Pro","battery_capacity_mAh":4350,"screen_size_inches":5.98,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":168.16,"price_usd":198.92} {"index":{"_index":"mobile_phones"}} {"id":137,"name":"Oppo F5","brand":"Oppo","model":"F5","battery_capacity_mAh":3200,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":138,"name":"OnePlus 5T","brand":"OnePlus","model":"5T","battery_capacity_mAh":3300,"screen_size_inches":6.01,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":301.42,"price_usd":356.55} {"index":{"_index":"mobile_phones"}} {"id":139,"name":"Hofalser 9i","brand":"Hofalser","model":"9i","battery_capacity_mAh":3340,"screen_size_inches":5.9,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":140,"name":"Xiaomi Mi MIX 2","brand":"Xiaomi","model":"Mi MIX 2","battery_capacity_mAh":3400,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":141,"name":"Lefalsevo K8 Plus","brand":"Lefalsevo","model":"K8 Plus","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":142,"name":"Mi A1","brand":"Xiaomi","model":"Mi A1","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":143,"name":"Sony Xperia XZ1","brand":"Sony","model":"Xperia XZ1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":370.07,"price_usd":437.76} {"index":{"_index":"mobile_phones"}} {"id":144,"name":"LG V30+","brand":"LG","model":"V30+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":296.13,"price_usd":350.29} {"index":{"_index":"mobile_phones"}} {"id":145,"name":"Lefalsevo K8 falsete","brand":"Lefalsevo","model":"K8 falsete","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":77.2,"price_usd":91.32} {"index":{"_index":"mobile_phones"}} {"id":146,"name":"Moto G5S","brand":"Motorola","model":"Moto G5S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":147,"name":"Google Pixel 2 XL","brand":"Google","model":"Pixel 2 XL","battery_capacity_mAh":3520,"screen_size_inches":6,"touchscreen":"true","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":137.43,"price_usd":162.57} {"index":{"_index":"mobile_phones"}} {"id":148,"name":"Google Pixel 2","brand":"Google","model":"Pixel 2","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12.2,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.7,"price_usd":125.03} {"index":{"_index":"mobile_phones"}} {"id":149,"name":"Motorola Moto X4","brand":"Motorola","model":"Moto X4","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":132.21,"price_usd":156.39} {"index":{"_index":"mobile_phones"}} {"id":150,"name":"Moto G5S Plus","brand":"Motorola","model":"Moto G5S Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":151,"name":"Redmi 5","brand":"Xiaomi","model":"Redmi 5","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":152,"name":"Redmi falsete 5","brand":"Xiaomi","model":"Redmi falsete 5","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":92.0,"price_usd":108.83} {"index":{"_index":"mobile_phones"}} {"id":153,"name":"Jio Phone","brand":"Jio","model":"Phone","battery_capacity_mAh":2000,"screen_size_inches":2.4,"touchscreen":"false","resolution_x":240,"resolution_y":320,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"true","price_gbp":13.21,"price_usd":15.63} {"index":{"_index":"mobile_phones"}} {"id":154,"name":"Samsung Galaxy On Max","brand":"Samsung","model":"Galaxy On Max","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":104.6,"price_usd":123.73} {"index":{"_index":"mobile_phones"}} {"id":155,"name":"Motorola Moto Z2 Play","brand":"Motorola","model":"Moto Z2 Play","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":156,"name":"Yu Yureka Black","brand":"Yu","model":"reka Black","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":157,"name":"Xiaomi Mi Max 2","brand":"Xiaomi","model":"Mi Max 2","battery_capacity_mAh":5300,"screen_size_inches":6.44,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":158,"name":"Coolpad Cool Play 6","brand":"Coolpad","model":"Cool Play 6","battery_capacity_mAh":4060,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":159,"name":"OnePlus 5","brand":"OnePlus","model":"5","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":185.08,"price_usd":218.93} {"index":{"_index":"mobile_phones"}} {"id":160,"name":"Asus ZenFone Zoom S","brand":"Asus","model":"ZenFone Zoom S","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":161,"name":"Hofalser 8 Pro","brand":"Hofalser","model":"8 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":186.0,"price_usd":220.02} {"index":{"_index":"mobile_phones"}} {"id":162,"name":"Micromax Dual 5","brand":"Micromax","model":"Dual 5","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":163,"name":"Oppo F3 Plus","brand":"Oppo","model":"F3 Plus","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":164,"name":"Sony Xperia XZ Premium","brand":"Sony","model":"Xperia XZ Premium","battery_capacity_mAh":3230,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":2160,"resolution_y":3840,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":354.31,"price_usd":419.12} {"index":{"_index":"mobile_phones"}} {"id":165,"name":"Motorola Moto G5 Plus","brand":"Motorola","model":"Moto G5 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":115.28,"price_usd":136.37} {"index":{"_index":"mobile_phones"}} {"id":166,"name":"Asus ZenFone 3S Max","brand":"Asus","model":"ZenFone 3S Max","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":167,"name":"Samsung Galaxy C7 Pro","brand":"Samsung","model":"Galaxy C7 Pro","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":168,"name":"HTC U Play","brand":"HTC","model":"U Play","battery_capacity_mAh":2500,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":163.93,"price_usd":193.92} {"index":{"_index":"mobile_phones"}} {"id":169,"name":"HTC U Ultra","brand":"HTC","model":"U Ultra","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":578.16,"price_usd":683.91} {"index":{"_index":"mobile_phones"}} {"id":170,"name":"Asus ZenFone AR","brand":"Asus","model":"ZenFone AR","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":528.81,"price_usd":625.53} {"index":{"_index":"mobile_phones"}} {"id":171,"name":"Xiaomi Redmi 4A","brand":"Xiaomi","model":"Redmi 4A","battery_capacity_mAh":3120,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":172,"name":"Xiaomi Redmi 4","brand":"Xiaomi","model":"Redmi 4","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":173,"name":"Nubia Z11 mini S","brand":"Nubia","model":"Z11 mini S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":174,"name":"Lefalsevo Z2 Plus","brand":"Lefalsevo","model":"Z2 Plus","battery_capacity_mAh":3500,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":121.62,"price_usd":143.86} {"index":{"_index":"mobile_phones"}} {"id":175,"name":"LG V20","brand":"LG","model":"V20","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":285.55,"price_usd":337.78} {"index":{"_index":"mobile_phones"}} {"id":176,"name":"Lefalsevo K6 Power","brand":"Lefalsevo","model":"K6 Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":177,"name":"Sony Xperia XZ","brand":"Sony","model":"Xperia XZ","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":178,"name":"Samsung Galaxy J7 Prime","brand":"Samsung","model":"Galaxy J7 Prime","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.17,"price_usd":200.11} {"index":{"_index":"mobile_phones"}} {"id":179,"name":"Motorola Moto Z Play","brand":"Motorola","model":"Moto Z Play","battery_capacity_mAh":3510,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":180,"name":"Xiaomi Redmi falsete 4","brand":"Xiaomi","model":"Redmi falsete 4","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":181,"name":"Xiaomi Redmi 3S Prime","brand":"Xiaomi","model":"Redmi 3S Prime","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":182,"name":"Motorola Moto Z","brand":"Motorola","model":"Moto Z","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":183,"name":"Asus ZenFone 3 (ZE552KL)","brand":"Asus","model":"ZenFone 3 (ZE552KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":184,"name":"Smartron t.phone","brand":"Smartron","model":"t.phone","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":185,"name":"Motorola Moto G4 Plus","brand":"Motorola","model":"Moto G4 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":186,"name":"Coolpad Max","brand":"Coolpad","model":"Max","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":187,"name":"Xiaomi Mi Max","brand":"Xiaomi","model":"Mi Max","battery_capacity_mAh":4850,"screen_size_inches":6.44,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":188,"name":"Lefalsevo Zuk Z1","brand":"Lefalsevo","model":"Zuk Z1","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":189,"name":"LeEco Le 2","brand":"LeEco","model":"Le 2","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":190,"name":"LeEco Le Max 2","brand":"LeEco","model":"Le Max 2","battery_capacity_mAh":3100,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":82.39,"price_usd":97.46} {"index":{"_index":"mobile_phones"}} {"id":191,"name":"Huawei P9","brand":"Huawei","model":"P9","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":192,"name":"Apple iPhone SE","brand":"Apple","model":"iPhone SE","battery_capacity_mAh":1624,"screen_size_inches":4,"touchscreen":"true","resolution_x":640,"resolution_y":1136,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":1.2,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":193,"name":"LG G5","brand":"LG","model":"G5","battery_capacity_mAh":2800,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":194,"name":"Oppo F1","brand":"Oppo","model":"F1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":195,"name":"Samsung Galaxy A5 (2016)","brand":"Samsung","model":"Galaxy A5 (2016)","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":196,"name":"Xiaomi Redmi falsete 3","brand":"Xiaomi","model":"Redmi falsete 3","battery_capacity_mAh":4050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.97,"price_usd":86.31} {"index":{"_index":"mobile_phones"}} {"id":197,"name":"HTC One A9","brand":"HTC","model":"One A9","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":318.87,"price_usd":377.19} {"index":{"_index":"mobile_phones"}} {"id":198,"name":"BlackBerry Priv","brand":"BlackBerry","model":"Priv","battery_capacity_mAh":3410,"screen_size_inches":5.4,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":18,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":199,"name":"Google Nexus 5X","brand":"LG","model":"Google Nexus 5X","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12.3,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":200,"name":"Apple iPhone 6s","brand":"Apple","model":"iPhone 6s","battery_capacity_mAh":1715,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":750,"resolution_y":1334,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":201,"name":"Lefalsevo Vibe P1","brand":"Lefalsevo","model":"Vibe P1","battery_capacity_mAh":4900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":202,"name":"Lefalsevo Vibe S1","brand":"Lefalsevo","model":"Vibe S1","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":203,"name":"Samsung Galaxy S6 Edge+","brand":"Samsung","model":"Galaxy S6 Edge+","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":190.36,"price_usd":225.18} {"index":{"_index":"mobile_phones"}} {"id":204,"name":"Samsung Galaxy falsete 5","brand":"Samsung","model":"Galaxy falsete 5","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":205,"name":"Motorola Moto X Play","brand":"Motorola","model":"Moto X Play","battery_capacity_mAh":3630,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":206,"name":"Motorola Moto G (Gen 3)","brand":"Motorola","model":"Moto G (Gen 3)","battery_capacity_mAh":2470,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":207,"name":"Hofalser 7","brand":"Hofalser","model":"7","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":20,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":208,"name":"Asus ZenFone Selfie","brand":"Asus","model":"ZenFone Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":209,"name":"LG G4","brand":"LG","model":"G4","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":140.66,"price_usd":166.38} {"index":{"_index":"mobile_phones"}} {"id":210,"name":"Xiaomi Mi 4i","brand":"Xiaomi","model":"Mi 4i","battery_capacity_mAh":3120,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":211,"name":"Lefalsevo K3 falsete","brand":"Lefalsevo","model":"K3 falsete","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":212,"name":"Motorola Moto Turbo","brand":"Motorola","model":"Moto Turbo","battery_capacity_mAh":3900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":21,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":338.43,"price_usd":400.34} {"index":{"_index":"mobile_phones"}} {"id":213,"name":"Gionee Elife S7","brand":"Gionee","model":"Elife S7","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":214,"name":"Lefalsevo Vibe Shot","brand":"Lefalsevo","model":"Vibe Shot","battery_capacity_mAh":2900,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":103.64,"price_usd":122.59} {"index":{"_index":"mobile_phones"}} {"id":215,"name":"Samsung Galaxy S6 Edge","brand":"Samsung","model":"Galaxy S6 Edge","battery_capacity_mAh":2600,"screen_size_inches":5.1,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":216,"name":"Hofalser 6 Plus","brand":"Hofalser","model":"6 Plus","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":280.26,"price_usd":331.53} {"index":{"_index":"mobile_phones"}} {"id":217,"name":"HTC Desire 820s","brand":"HTC","model":"Desire 820s","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":269.7,"price_usd":319.03} {"index":{"_index":"mobile_phones"}} {"id":218,"name":"HTC One (M8 Eye)","brand":"HTC","model":"One (M8 Eye)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":301.43,"price_usd":356.56} {"index":{"_index":"mobile_phones"}} {"id":219,"name":"Google Nexus 6","brand":"Motorola","model":"Google Nexus 6","battery_capacity_mAh":3220,"screen_size_inches":5.96,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":142.68,"price_usd":168.77} {"index":{"_index":"mobile_phones"}} {"id":220,"name":"HTC Desire Eye","brand":"HTC","model":"Desire Eye","battery_capacity_mAh":2400,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":221,"name":"BlackBerry Passport","brand":"BlackBerry","model":"Passport","battery_capacity_mAh":3450,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":1440,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":222,"name":"Apple iPhone 6 Plus","brand":"Apple","model":"iPhone 6 Plus","battery_capacity_mAh":2915,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":223,"name":"Apple iPhone 6","brand":"Apple","model":"iPhone 6","battery_capacity_mAh":1810,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":750,"resolution_y":1334,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":224,"name":"Motorola Moto X (Gen 2)","brand":"Motorola","model":"Moto X (Gen 2)","battery_capacity_mAh":2300,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":253.82,"price_usd":300.25} {"index":{"_index":"mobile_phones"}} {"id":225,"name":"Motorola Moto G (Gen 2)","brand":"Motorola","model":"Moto G (Gen 2)","battery_capacity_mAh":2070,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":142.78,"price_usd":168.9} {"index":{"_index":"mobile_phones"}} {"id":226,"name":"Sony Xperia Z3 Compact","brand":"Sony","model":"Xperia Z3 Compact","battery_capacity_mAh":2600,"screen_size_inches":4.6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":412.37,"price_usd":487.8} {"index":{"_index":"mobile_phones"}} {"id":227,"name":"Samsung Galaxy falsete 4","brand":"Samsung","model":"Galaxy falsete 4","battery_capacity_mAh":3220,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":3.7,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":295.08,"price_usd":349.06} {"index":{"_index":"mobile_phones"}} {"id":228,"name":"Samsung Galaxy falsete Edge","brand":"Samsung","model":"Galaxy falsete Edge","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"true","resolution_x":1600,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":3.7,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":316.76,"price_usd":374.7} {"index":{"_index":"mobile_phones"}} {"id":229,"name":"Xiaomi Mi 4","brand":"Xiaomi","model":"Mi 4","battery_capacity_mAh":3080,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":84.47,"price_usd":99.92} {"index":{"_index":"mobile_phones"}} {"id":230,"name":"Lefalsevo Vibe Z2 Pro","brand":"Lefalsevo","model":"Vibe Z2 Pro","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":231,"name":"OnePlus One","brand":"OnePlus","model":"One","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":232.67,"price_usd":275.23} {"index":{"_index":"mobile_phones"}} {"id":232,"name":"Samsung Galaxy S5","brand":"Samsung","model":"Galaxy S5","battery_capacity_mAh":2800,"screen_size_inches":5.1,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":359.59,"price_usd":425.36} {"index":{"_index":"mobile_phones"}} {"id":233,"name":"Sony Xperia Z2","brand":"Sony","model":"Xperia Z2","battery_capacity_mAh":3200,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":380.65,"price_usd":450.27} {"index":{"_index":"mobile_phones"}} {"id":234,"name":"Sony Xperia Z1 Compact","brand":"Sony","model":"Xperia Z1 Compact","battery_capacity_mAh":2300,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":235,"name":"Gionee Elife E7","brand":"Gionee","model":"Elife E7","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":236,"name":"Samsung Galaxy Grand 2","brand":"Samsung","model":"Galaxy Grand 2","battery_capacity_mAh":2600,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":237,"name":"Motorola Moto G","brand":"Motorola","model":"Moto G","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":238,"name":"Google Nexus 5","brand":"LG","model":"Google Nexus 5","battery_capacity_mAh":2300,"screen_size_inches":4.95,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":239,"name":"falsekia Lumia 1520","brand":"falsekia","model":"Lumia 1520","battery_capacity_mAh":3400,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":20,"front_camera":1.2,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":370.07,"price_usd":437.76} {"index":{"_index":"mobile_phones"}} {"id":240,"name":"Apple iPhone 5c","brand":"Apple","model":"iPhone 5c","battery_capacity_mAh":1507,"screen_size_inches":4,"touchscreen":"true","resolution_x":640,"resolution_y":1136,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.2,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":241,"name":"Xiaomi Mi 3","brand":"Xiaomi","model":"Mi 3","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":242,"name":"Samsung Galaxy falsete 3","brand":"Samsung","model":"Galaxy falsete 3","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":535.7,"price_usd":633.68} {"index":{"_index":"mobile_phones"}} {"id":243,"name":"Sony Xperia Z1","brand":"Sony","model":"Xperia Z1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20.7,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":599.67,"price_usd":709.36} {"index":{"_index":"mobile_phones"}} {"id":244,"name":"LG G2","brand":"LG","model":"G2","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2.1,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":237.96,"price_usd":281.48} {"index":{"_index":"mobile_phones"}} {"id":245,"name":"Motorola Moto X","brand":"Motorola","model":"Moto X","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":10,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":158.65,"price_usd":187.66} {"index":{"_index":"mobile_phones"}} {"id":246,"name":"Sony Xperia Z","brand":"Sony","model":"Xperia Z","battery_capacity_mAh":2330,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13.1,"front_camera":2.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":343.63,"price_usd":406.48} {"index":{"_index":"mobile_phones"}} {"id":247,"name":"Samsung Galaxy S III","brand":"Samsung","model":"Galaxy S III","battery_capacity_mAh":2100,"screen_size_inches":4.8,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":248,"name":"Samsung Galaxy S4","brand":"Samsung","model":"Galaxy S4","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":612.53,"price_usd":724.57} {"index":{"_index":"mobile_phones"}} {"id":249,"name":"falsekia Lumia 920","brand":"falsekia","model":"Lumia 920","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":32,"rear_camera":8.7,"front_camera":1.3,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":250,"name":"Oppo F15","brand":"Oppo","model":"F15","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":197.67,"price_usd":233.83} {"index":{"_index":"mobile_phones"}} {"id":251,"name":"Vivo S1 Pro","brand":"Vivo","model":"S1 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":196.71,"price_usd":232.69} {"index":{"_index":"mobile_phones"}} {"id":252,"name":"Motorola Moto G8 Plus","brand":"Motorola","model":"Moto G8 Plus","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":48,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":253,"name":"Motorola One Macro","brand":"Motorola","model":"One Macro","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":254,"name":"Vivo U10","brand":"Vivo","model":"U10","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"true","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":255,"name":"Redmi 8A","brand":"Xiaomi","model":"Redmi 8A","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":256,"name":"Oppo A9 2020","brand":"Oppo","model":"A9 2020","battery_capacity_mAh":5000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":155.79,"price_usd":184.29} {"index":{"_index":"mobile_phones"}} {"id":257,"name":"Samsung Galaxy M10s","brand":"Samsung","model":"Galaxy M10s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":258,"name":"Infinix Hot 8","brand":"Infinix","model":"Hot 8","battery_capacity_mAh":5000,"screen_size_inches":6.52,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":259,"name":"Redmi falsete 8","brand":"Xiaomi","model":"Redmi falsete 8","battery_capacity_mAh":4000,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":48,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":97.25,"price_usd":115.04} {"index":{"_index":"mobile_phones"}} {"id":260,"name":"Redmi 8","brand":"Xiaomi","model":"Redmi 8","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":261,"name":"Realme 3i","brand":"Realme","model":"3i","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":262,"name":"Infinix Hot 7","brand":"Infinix","model":"Hot 7","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":263,"name":"Hofalser 9X","brand":"Hofalser","model":"9X","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":264,"name":"Motorola One Action","brand":"Motorola","model":"One Action","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":12,"front_camera":12,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":265,"name":"LG W30","brand":"LG","model":"W30","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":266,"name":"Infinix Hot 7 Pro","brand":"Infinix","model":"Hot 7 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":267,"name":"Redmi 7A","brand":"Xiaomi","model":"Redmi 7A","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":268,"name":"Infinix S4","brand":"Infinix","model":"S4","battery_capacity_mAh":4000,"screen_size_inches":6.21,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":269,"name":"Vivo Y17","brand":"Vivo","model":"Y17","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"true","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":121.52,"price_usd":143.75} {"index":{"_index":"mobile_phones"}} {"id":270,"name":"Infinix Smart 3 Plus","brand":"Infinix","model":"Smart 3 Plus","battery_capacity_mAh":3500,"screen_size_inches":6.21,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":271,"name":"Oppo A1k","brand":"Oppo","model":"A1k","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":70.54,"price_usd":83.45} {"index":{"_index":"mobile_phones"}} {"id":272,"name":"Oppo A5s","brand":"Oppo","model":"A5s","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1520,"resolution_y":720,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":83.92,"price_usd":99.27} {"index":{"_index":"mobile_phones"}} {"id":273,"name":"Xiaomi Redmi Y3","brand":"Xiaomi","model":"Redmi Y3","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":274,"name":"Realme C2","brand":"Realme","model":"C2","battery_capacity_mAh":4000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":275,"name":"Hofalser 20i","brand":"Hofalser","model":"20i","battery_capacity_mAh":3400,"screen_size_inches":6.21,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":24,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":276,"name":"Vivo S1","brand":"Vivo","model":"S1","battery_capacity_mAh":4500,"screen_size_inches":6.38,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":158.42,"price_usd":187.4} {"index":{"_index":"mobile_phones"}} {"id":277,"name":"Realme 3","brand":"Realme","model":"3","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":278,"name":"Vivo V15","brand":"Vivo","model":"V15","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":279,"name":"Redmi Go","brand":"Xiaomi","model":"Redmi Go","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":280,"name":"Meizu M16th","brand":"Meizu","model":"M16th","battery_capacity_mAh":3010,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":281,"name":"Asus ZenFone Max M2","brand":"Asus","model":"ZenFone Max M2","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":282,"name":"Infinix falsete 5 Stylus","brand":"Infinix","model":"falsete 5 Stylus","battery_capacity_mAh":4000,"screen_size_inches":5.93,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":283,"name":"Infinix Hot S3X","brand":"Infinix","model":"Hot S3X","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":284,"name":"Asus ZenFone Lite L1 (ZA551KL)","brand":"Asus","model":"ZenFone Lite L1 (ZA551KL)","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":285,"name":"Asus ZenFone Max M1 (ZB556KL)","brand":"Asus","model":"ZenFone Max M1 (ZB556KL)","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":286,"name":"Lefalsevo K9","brand":"Lefalsevo","model":"K9","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":287,"name":"falsekia 3.1 Plus","brand":"falsekia","model":"3.1 Plus","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.45,"price_usd":85.7} {"index":{"_index":"mobile_phones"}} {"id":288,"name":"Hofalser 8C","brand":"Hofalser","model":"8C","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":289,"name":"Panasonic Eluga X1 Pro","brand":"Panasonic","model":"Eluga X1 Pro","battery_capacity_mAh":3000,"screen_size_inches":6.18,"touchscreen":"true","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":290,"name":"Realme C1","brand":"Realme","model":"C1","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":291,"name":"BlackBerry KEY2 LE","brand":"BlackBerry","model":"KEY2 LE","battery_capacity_mAh":3000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1620,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":243.15,"price_usd":287.63} {"index":{"_index":"mobile_phones"}} {"id":292,"name":"Realme 2","brand":"Realme","model":"2","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":293,"name":"Infinix falsete 5","brand":"Infinix","model":"falsete 5","battery_capacity_mAh":4500,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":61.87,"price_usd":73.19} {"index":{"_index":"mobile_phones"}} {"id":294,"name":"Oppo F9 Pro","brand":"Oppo","model":"F9 Pro","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":295,"name":"Oppo F9","brand":"Oppo","model":"F9","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.85,"price_usd":150.06} {"index":{"_index":"mobile_phones"}} {"id":296,"name":"Hofalser 9N","brand":"Hofalser","model":"9N","battery_capacity_mAh":3000,"screen_size_inches":5.84,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":297,"name":"Huawei falseva 3i","brand":"Huawei","model":"falseva 3i","battery_capacity_mAh":3340,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":232.67,"price_usd":275.23} {"index":{"_index":"mobile_phones"}} {"id":298,"name":"Huawei falseva 3","brand":"Huawei","model":"falseva 3","battery_capacity_mAh":3750,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":299,"name":"Xiaomi Redmi 6 Pro","brand":"Xiaomi","model":"Redmi 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.84,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":87.68,"price_usd":103.72} {"index":{"_index":"mobile_phones"}} {"id":300,"name":"Xiaomi Redmi 6A","brand":"Xiaomi","model":"Redmi 6A","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":301,"name":"Xiaomi Redmi Y2","brand":"Xiaomi","model":"Redmi Y2","battery_capacity_mAh":3080,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":302,"name":"Tecfalse Camon iClick","brand":"Tecfalse","model":"Camon iClick","battery_capacity_mAh":3750,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.48,"price_usd":92.83} {"index":{"_index":"mobile_phones"}} {"id":303,"name":"Redmi 6","brand":"Xiaomi","model":"Redmi 6","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.94,"price_usd":89.83} {"index":{"_index":"mobile_phones"}} {"id":304,"name":"Samsung Galaxy J8","brand":"Samsung","model":"Galaxy J8","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":163.92,"price_usd":193.91} {"index":{"_index":"mobile_phones"}} {"id":305,"name":"Samsung Galaxy J6","brand":"Samsung","model":"Galaxy J6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":306,"name":"Samsung Galaxy A6+","brand":"Samsung","model":"Galaxy A6+","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":307,"name":"Moto E5 Plus","brand":"Motorola","model":"Moto E5 Plus","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":99.41,"price_usd":117.59} {"index":{"_index":"mobile_phones"}} {"id":308,"name":"Nubia Red Magic","brand":"Nubia","model":"Red Magic","battery_capacity_mAh":3800,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":24,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":262.93,"price_usd":311.02} {"index":{"_index":"mobile_phones"}} {"id":309,"name":"InFocus Vision 3 Pro","brand":"InFocus","model":"Vision 3 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":310,"name":"Itel S42","brand":"Itel","model":"S42","battery_capacity_mAh":3000,"screen_size_inches":5.65,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.69,"price_usd":106.09} {"index":{"_index":"mobile_phones"}} {"id":311,"name":"Huawei P20 Lite","brand":"Huawei","model":"P20 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.84,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":135.38,"price_usd":160.14} {"index":{"_index":"mobile_phones"}} {"id":312,"name":"Vivo V9","brand":"Vivo","model":"V9","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":145.32,"price_usd":171.9} {"index":{"_index":"mobile_phones"}} {"id":313,"name":"Moto G6 Play","brand":"Motorola","model":"Moto G6 Play","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":85.13,"price_usd":100.7} {"index":{"_index":"mobile_phones"}} {"id":314,"name":"Hofalser 7C","brand":"Hofalser","model":"7C","battery_capacity_mAh":3000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":82.49,"price_usd":97.57} {"index":{"_index":"mobile_phones"}} {"id":315,"name":"Moto G6","brand":"Motorola","model":"Moto G6","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":316,"name":"Smartron t.phone P","brand":"Smartron","model":"t.phone P","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":111.05,"price_usd":131.36} {"index":{"_index":"mobile_phones"}} {"id":317,"name":"Oppo A83","brand":"Oppo","model":"A83","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":318,"name":"Hofalser 9 Lite","brand":"Hofalser","model":"9 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.65,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.44,"price_usd":111.71} {"index":{"_index":"mobile_phones"}} {"id":319,"name":"10.or D","brand":"10.or","model":"D","battery_capacity_mAh":3500,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":320,"name":"InFocus Vision 3","brand":"InFocus","model":"Vision 3","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.45,"price_usd":85.7} {"index":{"_index":"mobile_phones"}} {"id":321,"name":"Samsung Galaxy A8+ (2018)","brand":"Samsung","model":"Galaxy A8+ (2018)","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":178.74,"price_usd":211.44} {"index":{"_index":"mobile_phones"}} {"id":322,"name":"Gionee S11 Lite","brand":"Gionee","model":"S11 Lite","battery_capacity_mAh":3030,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.83,"price_usd":79.06} {"index":{"_index":"mobile_phones"}} {"id":323,"name":"Vivo V7","brand":"Vivo","model":"V7","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":324,"name":"Redmi Y1","brand":"Xiaomi","model":"Redmi Y1","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":325,"name":"Redmi 5A","brand":"Xiaomi","model":"Redmi 5A","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":76.14,"price_usd":90.07} {"index":{"_index":"mobile_phones"}} {"id":326,"name":"Hofalser 7X","brand":"Hofalser","model":"7X","battery_capacity_mAh":3340,"screen_size_inches":5.93,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":134.55,"price_usd":159.16} {"index":{"_index":"mobile_phones"}} {"id":327,"name":"Hofalser Holly 4","brand":"Hofalser","model":"Holly 4","battery_capacity_mAh":3020,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":328,"name":"Gionee M7 Power","brand":"Gionee","model":"M7 Power","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":329,"name":"Vivo V7+","brand":"Vivo","model":"V7+","battery_capacity_mAh":3225,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":330,"name":"Asus ZenFone 4 Selfie Pro","brand":"Asus","model":"ZenFone 4 Selfie Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":331,"name":"LG Q6","brand":"LG","model":"Q6","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.64,"price_usd":111.95} {"index":{"_index":"mobile_phones"}} {"id":332,"name":"Oppo F3","brand":"Oppo","model":"F3","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.81,"price_usd":150.01} {"index":{"_index":"mobile_phones"}} {"id":333,"name":"Smartron srt.phone","brand":"Smartron","model":"srt.phone","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":334,"name":"Vivo V5s","brand":"Vivo","model":"V5s","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":335,"name":"Micromax Evok Power","brand":"Micromax","model":"Evok Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":336,"name":"Lava Z25","brand":"Lava","model":"Z25","battery_capacity_mAh":3020,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":337,"name":"Nubia M2","brand":"Nubia","model":"M2","battery_capacity_mAh":3630,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":338,"name":"Cat S60","brand":"Cat","model":"S60","battery_capacity_mAh":3800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":423.05,"price_usd":500.43} {"index":{"_index":"mobile_phones"}} {"id":339,"name":"Coolpad falsete 5 Lite","brand":"Coolpad","model":"falsete 5 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":340,"name":"Gionee A1","brand":"Gionee","model":"A1","battery_capacity_mAh":4010,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":341,"name":"Sony Xperia XA1 Ultra","brand":"Sony","model":"Xperia XA1 Ultra","battery_capacity_mAh":2700,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":23,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":63.4,"price_usd":74.99} {"index":{"_index":"mobile_phones"}} {"id":342,"name":"Sony Xperia XZs","brand":"Sony","model":"Xperia XZs","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":19,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.19,"price_usd":375.2} {"index":{"_index":"mobile_phones"}} {"id":343,"name":"Gionee A1 Plus","brand":"Gionee","model":"A1 Plus","battery_capacity_mAh":4550,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":10.51,"price_usd":12.44} {"index":{"_index":"mobile_phones"}} {"id":344,"name":"Motorola Moto G5","brand":"Motorola","model":"Moto G5","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.64,"price_usd":68.18} {"index":{"_index":"mobile_phones"}} {"id":345,"name":"Hofalser 8 Lite","brand":"Hofalser","model":"8 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":157.94,"price_usd":186.83} {"index":{"_index":"mobile_phones"}} {"id":346,"name":"Vivo V5 Plus","brand":"Vivo","model":"V5 Plus","battery_capacity_mAh":3055,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":132.21,"price_usd":156.39} {"index":{"_index":"mobile_phones"}} {"id":347,"name":"falsekia 6","brand":"falsekia","model":"6","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":76.68,"price_usd":90.7} {"index":{"_index":"mobile_phones"}} {"id":348,"name":"Samsung Galaxy A7 (2017)","brand":"Samsung","model":"Galaxy A7 (2017)","battery_capacity_mAh":3600,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":273.93,"price_usd":324.03} {"index":{"_index":"mobile_phones"}} {"id":349,"name":"Samsung Galaxy A5 (2017)","brand":"Samsung","model":"Galaxy A5 (2017)","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":200.94,"price_usd":237.7} {"index":{"_index":"mobile_phones"}} {"id":350,"name":"Coolpad falsete 3S","brand":"Coolpad","model":"falsete 3S","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":351,"name":"Oppo A57","brand":"Oppo","model":"A57","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":352,"name":"Vivo V5","brand":"Vivo","model":"V5","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":174.94,"price_usd":206.94} {"index":{"_index":"mobile_phones"}} {"id":353,"name":"Asus ZenFone 3 Max (ZC553KL)","brand":"Asus","model":"ZenFone 3 Max (ZC553KL)","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":90.95,"price_usd":107.58} {"index":{"_index":"mobile_phones"}} {"id":354,"name":"Lyf F1","brand":"Lyf","model":"F1","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":355,"name":"InFocus Epic 1","brand":"InFocus","model":"Epic 1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":356,"name":"Hofalser 6X","brand":"Hofalser","model":"6X","battery_capacity_mAh":3340,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":357,"name":"Intex Aqua S7","brand":"Intex","model":"Aqua S7","battery_capacity_mAh":3200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":358,"name":"Lefalsevo P2","brand":"Lefalsevo","model":"P2","battery_capacity_mAh":5100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":359,"name":"Lefalsevo K6 falsete","brand":"Lefalsevo","model":"K6 falsete","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.02,"price_usd":111.22} {"index":{"_index":"mobile_phones"}} {"id":360,"name":"Gionee S6s","brand":"Gionee","model":"S6s","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":361,"name":"Coolpad Cool 1 Dual","brand":"Coolpad","model":"Cool 1 Dual","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":133.68,"price_usd":158.13} {"index":{"_index":"mobile_phones"}} {"id":362,"name":"Oppo F1s","brand":"Oppo","model":"F1s","battery_capacity_mAh":3075,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":363,"name":"BlackBerry DTEK50","brand":"BlackBerry","model":"DTEK50","battery_capacity_mAh":2610,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":364,"name":"Asus ZenFone 3 Laser","brand":"Asus","model":"ZenFone 3 Laser","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":365,"name":"Lefalsevo Phab 2 Plus","brand":"Lefalsevo","model":"Phab 2 Plus","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":366,"name":"Yu Yunicorn","brand":"Yu","model":"nicorn","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":367,"name":"Coolpad falsete 3 Plus","brand":"Coolpad","model":"falsete 3 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.09,"price_usd":78.18} {"index":{"_index":"mobile_phones"}} {"id":368,"name":"LeEco Le 1s Eco","brand":"LeEco","model":"Le 1s Eco","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":369,"name":"Vivo V3Max","brand":"Vivo","model":"V3Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.15,"price_usd":224.93} {"index":{"_index":"mobile_phones"}} {"id":370,"name":"Oppo F1 Plus","brand":"Oppo","model":"F1 Plus","battery_capacity_mAh":2850,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":371,"name":"InFocus Bingo 50","brand":"InFocus","model":"Bingo 50","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":372,"name":"Lefalsevo Vibe K5","brand":"Lefalsevo","model":"Vibe K5","battery_capacity_mAh":2750,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":373,"name":"Lefalsevo Vibe K5 Plus","brand":"Lefalsevo","model":"Vibe K5 Plus","battery_capacity_mAh":2750,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":374,"name":"Xolo Era 4K","brand":"Xolo","model":"Era 4K","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":375,"name":"LG X screen","brand":"LG","model":"X screen","battery_capacity_mAh":2300,"screen_size_inches":4.93,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":376,"name":"Coolpad falsete 3 Lite","brand":"Coolpad","model":"falsete 3 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":377,"name":"Lefalsevo Vibe K4 falsete","brand":"Lefalsevo","model":"Vibe K4 falsete","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":378,"name":"Gionee Marathon M5 Plus","brand":"Gionee","model":"Marathon M5 Plus","battery_capacity_mAh":5020,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":252.78,"price_usd":299.01} {"index":{"_index":"mobile_phones"}} {"id":379,"name":"Intex Aqua GenX","brand":"Intex","model":"Aqua GenX","battery_capacity_mAh":2850,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":101.85,"price_usd":120.48} {"index":{"_index":"mobile_phones"}} {"id":380,"name":"Yu Yutopia","brand":"Yu","model":"topia","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":381,"name":"InFocus M680","brand":"InFocus","model":"M680","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":382,"name":"Gionee Marathon M5 Lite","brand":"Gionee","model":"Marathon M5 Lite","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":383,"name":"Gionee S6","brand":"Gionee","model":"S6","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.2,"price_usd":200.15} {"index":{"_index":"mobile_phones"}} {"id":384,"name":"Motorola Moto G Turbo Edition","brand":"Motorola","model":"Moto G Turbo Edition","battery_capacity_mAh":2470,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":385,"name":"Micromax Canvas 5","brand":"Micromax","model":"Canvas 5","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.92,"price_usd":85.07} {"index":{"_index":"mobile_phones"}} {"id":386,"name":"Hofalser 5X","brand":"Hofalser","model":"5X","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.27,"price_usd":92.58} {"index":{"_index":"mobile_phones"}} {"id":387,"name":"Coolpad falsete 3","brand":"Coolpad","model":"falsete 3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":388,"name":"HTC One E9s Dual SIM","brand":"HTC","model":"One E9s Dual SIM","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":389,"name":"Yu Yunique","brand":"Yu","model":"nique","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.66,"price_usd":58.74} {"index":{"_index":"mobile_phones"}} {"id":390,"name":"Sony Xperia Z5 Dual","brand":"Sony","model":"Xperia Z5 Dual","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":486.5,"price_usd":575.49} {"index":{"_index":"mobile_phones"}} {"id":391,"name":"Acer Liquid Z630s","brand":"Acer","model":"Liquid Z630s","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":76.04,"price_usd":89.95} {"index":{"_index":"mobile_phones"}} {"id":392,"name":"Xiaomi Redmi 2 Prime","brand":"Xiaomi","model":"Redmi 2 Prime","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":393,"name":"Asus ZenFone Max","brand":"Asus","model":"ZenFone Max","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":394,"name":"Asus ZenFone 2 Deluxe","brand":"Asus","model":"ZenFone 2 Deluxe","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":395,"name":"Gionee Marathon M4","brand":"Gionee","model":"Marathon M4","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":396,"name":"Asus ZenFone 2 Laser (ZE550KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE550KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":397,"name":"Motorola Moto X Style","brand":"Motorola","model":"Moto X Style","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":398,"name":"InFocus M812","brand":"InFocus","model":"M812","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":83.72,"price_usd":99.04} {"index":{"_index":"mobile_phones"}} {"id":399,"name":"Xolo Black","brand":"Xolo","model":"Black","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.24,"price_usd":149.33} {"index":{"_index":"mobile_phones"}} {"id":400,"name":"Phicomm Passion 660","brand":"Phicomm","model":"Passion 660","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.25,"price_usd":40.51} {"index":{"_index":"mobile_phones"}} {"id":401,"name":"Coolpad Dazen X7","brand":"Coolpad","model":"Dazen X7","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":402,"name":"Yu Yuphoria","brand":"Yu","model":"phoria","battery_capacity_mAh":2230,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":403,"name":"Hofalser 4C","brand":"Hofalser","model":"4C","battery_capacity_mAh":2550,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":404,"name":"Lefalsevo A6000 Plus","brand":"Lefalsevo","model":"A6000 Plus","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":67.68,"price_usd":80.06} {"index":{"_index":"mobile_phones"}} {"id":405,"name":"Lefalsevo A7000","brand":"Lefalsevo","model":"A7000","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":70.5,"price_usd":83.4} {"index":{"_index":"mobile_phones"}} {"id":406,"name":"Motorola Moto E (Gen 2)","brand":"Motorola","model":"Moto E (Gen 2)","battery_capacity_mAh":2390,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":407,"name":"HTC Desire 526G+ Dual SIM","brand":"HTC","model":"Desire 526G+ Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":95.19,"price_usd":112.6} {"index":{"_index":"mobile_phones"}} {"id":408,"name":"Lefalsevo A6000","brand":"Lefalsevo","model":"A6000","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.88,"price_usd":62.55} {"index":{"_index":"mobile_phones"}} {"id":409,"name":"Asus ZenFone Zoom","brand":"Asus","model":"ZenFone Zoom","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":169.21,"price_usd":200.16} {"index":{"_index":"mobile_phones"}} {"id":410,"name":"Xiaomi Redmi 2","brand":"Xiaomi","model":"Redmi 2","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":411,"name":"Lava Iris Fuel 60","brand":"Lava","model":"Iris Fuel 60","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":10,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":412,"name":"Vivo Y15","brand":"Vivo","model":"Y15","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":69.16,"price_usd":81.81} {"index":{"_index":"mobile_phones"}} {"id":413,"name":"Micromax Canvas Selfie","brand":"Micromax","model":"Canvas Selfie","battery_capacity_mAh":2300,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":146.96,"price_usd":173.84} {"index":{"_index":"mobile_phones"}} {"id":414,"name":"Hofalser 4X","brand":"Hofalser","model":"4X","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":415,"name":"Xolo Q2100","brand":"Xolo","model":"Q2100","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":416,"name":"Micromax Canvas 4 Plus","brand":"Micromax","model":"Canvas 4 Plus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":417,"name":"Micromax Canvas A1","brand":"Micromax","model":"Canvas A1","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":50.71,"price_usd":59.99} {"index":{"_index":"mobile_phones"}} {"id":418,"name":"Karbonn Sparkle V","brand":"Karbonn","model":"Sparkle V","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":30.66,"price_usd":36.27} {"index":{"_index":"mobile_phones"}} {"id":419,"name":"Spice Dream Ufalse","brand":"Spice","model":"Dream Ufalse","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2.4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":420,"name":"Micromax Canvas Nitro","brand":"Micromax","model":"Canvas Nitro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":421,"name":"falsekia Lumia 830","brand":"falsekia","model":"Lumia 830","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":10,"front_camera":0.9,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":422,"name":"HTC Desire 820","brand":"HTC","model":"Desire 820","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":423,"name":"Samsung Galaxy Alpha","brand":"Samsung","model":"Galaxy Alpha","battery_capacity_mAh":1860,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":12,"front_camera":2.1,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":424,"name":"Xolo 8X-1000","brand":"Xolo","model":"8X-1000","battery_capacity_mAh":1920,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":425,"name":"Spice Stellar 520","brand":"Spice","model":"Stellar 520","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":426,"name":"Xiaomi Redmi 1S","brand":"Xiaomi","model":"Redmi 1S","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":427,"name":"Hofalser 6","brand":"Hofalser","model":"6","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":428,"name":"Oppo N1 Mini","brand":"Oppo","model":"N1 Mini","battery_capacity_mAh":2140,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":429,"name":"Xolo Q1200","brand":"Xolo","model":"Q1200","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":144.55,"price_usd":170.99} {"index":{"_index":"mobile_phones"}} {"id":430,"name":"Panasonic P81","brand":"Panasonic","model":"P81","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":125.86,"price_usd":148.88} {"index":{"_index":"mobile_phones"}} {"id":431,"name":"Motorola Moto E","brand":"Motorola","model":"Moto E","battery_capacity_mAh":1980,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":432,"name":"Oppo R1","brand":"Oppo","model":"R1","battery_capacity_mAh":2410,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":124.11,"price_usd":146.82} {"index":{"_index":"mobile_phones"}} {"id":433,"name":"Xolo Q1010i","brand":"Xolo","model":"Q1010i","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":143.9,"price_usd":170.22} {"index":{"_index":"mobile_phones"}} {"id":434,"name":"Micromax Canvas Knight","brand":"Micromax","model":"Canvas Knight","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":435,"name":"HTC Desire 816","brand":"HTC","model":"Desire 816","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":289.69,"price_usd":342.67} {"index":{"_index":"mobile_phones"}} {"id":436,"name":"falsekia X Dual SIM","brand":"falsekia","model":"X Dual SIM","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":437,"name":"Lefalsevo S660","brand":"Lefalsevo","model":"S660","battery_capacity_mAh":3000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":70.86,"price_usd":83.82} {"index":{"_index":"mobile_phones"}} {"id":438,"name":"Gionee Elife S5.5","brand":"Gionee","model":"Elife S5.5","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":439,"name":"LG G Pro 2","brand":"LG","model":"G Pro 2","battery_capacity_mAh":3200,"screen_size_inches":5.9,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2.1,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":444.43,"price_usd":525.72} {"index":{"_index":"mobile_phones"}} {"id":440,"name":"Xolo Q1100","brand":"Xolo","model":"Q1100","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":144.65,"price_usd":171.11} {"index":{"_index":"mobile_phones"}} {"id":441,"name":"Samsung Galaxy falsete 3 Neo","brand":"Samsung","model":"Galaxy falsete 3 Neo","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":118.98,"price_usd":140.75} {"index":{"_index":"mobile_phones"}} {"id":442,"name":"Asus ZenFone 6","brand":"Asus","model":"ZenFone 6","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":94.03,"price_usd":111.23} {"index":{"_index":"mobile_phones"}} {"id":443,"name":"falsekia Asha 502","brand":"falsekia","model":"Asha 502","battery_capacity_mAh":1010,"screen_size_inches":3,"touchscreen":"true","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":64,"internal_storage_GB":0.064,"rear_camera":5,"front_camera":0,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":444,"name":"falsekia Lumia 1020","brand":"falsekia","model":"Lumia 1020","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":41,"front_camera":1.2,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":445,"name":"Spice Pinnacle FHD","brand":"Spice","model":"Pinnacle FHD","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":446,"name":"Gionee Elife E6","brand":"Gionee","model":"Elife E6","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":226.86,"price_usd":268.36} {"index":{"_index":"mobile_phones"}} {"id":447,"name":"Micromax Canvas 4","brand":"Micromax","model":"Canvas 4","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":448,"name":"Lava Iris 504q","brand":"Lava","model":"Iris 504q","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":449,"name":"BlackBerry Q5","brand":"BlackBerry","model":"Q5","battery_capacity_mAh":2180,"screen_size_inches":3.1,"touchscreen":"true","resolution_x":720,"resolution_y":720,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":114.23,"price_usd":135.12} {"index":{"_index":"mobile_phones"}} {"id":450,"name":"BlackBerry Q10","brand":"BlackBerry","model":"Q10","battery_capacity_mAh":2100,"screen_size_inches":3.1,"touchscreen":"true","resolution_x":720,"resolution_y":720,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":104.7,"price_usd":123.85} {"index":{"_index":"mobile_phones"}} {"id":451,"name":"Lefalsevo P780","brand":"Lefalsevo","model":"P780","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":162.98,"price_usd":192.79} {"index":{"_index":"mobile_phones"}} {"id":452,"name":"Sony Xperia U","brand":"Sony","model":"Xperia U","battery_capacity_mAh":1320,"screen_size_inches":3.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":453,"name":"Sony Xperia SP","brand":"Sony","model":"Xperia SP","battery_capacity_mAh":2370,"screen_size_inches":4.6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":227.29,"price_usd":268.86} {"index":{"_index":"mobile_phones"}} {"id":454,"name":"Samsung Galaxy Y Pro Duos","brand":"Samsung","model":"Galaxy Y Pro Duos","battery_capacity_mAh":1350,"screen_size_inches":2.6,"touchscreen":"true","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":384,"internal_storage_GB":0.16,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.75,"price_usd":69.5} {"index":{"_index":"mobile_phones"}} {"id":455,"name":"Samsung Galaxy Mega 5.8","brand":"Samsung","model":"Galaxy Mega 5.8","battery_capacity_mAh":2600,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.9,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":456,"name":"falsekia Lumia 620","brand":"falsekia","model":"Lumia 620","battery_capacity_mAh":1300,"screen_size_inches":3.8,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":457,"name":"falsekia Lumia 820","brand":"falsekia","model":"Lumia 820","battery_capacity_mAh":1650,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":207.93,"price_usd":245.97} {"index":{"_index":"mobile_phones"}} {"id":458,"name":"LG Optimus G","brand":"LG","model":"Optimus G","battery_capacity_mAh":2100,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":768,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":459,"name":"HTC One S","brand":"HTC","model":"One S","battery_capacity_mAh":1650,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":181.62,"price_usd":214.84} {"index":{"_index":"mobile_phones"}} {"id":460,"name":"BlackBerry Z10","brand":"BlackBerry","model":"Z10","battery_capacity_mAh":1800,"screen_size_inches":4.2,"touchscreen":"true","resolution_x":768,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":58.17,"price_usd":68.81} {"index":{"_index":"mobile_phones"}} {"id":461,"name":"Infinix S5 Lite","brand":"Infinix","model":"S5 Lite","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":462,"name":"Infinix S5","brand":"Infinix","model":"S5","battery_capacity_mAh":4000,"screen_size_inches":6.6,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":463,"name":"Moto E6s","brand":"Motorola","model":"Moto E6s","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":464,"name":"Tecfalse Camon i4","brand":"Tecfalse","model":"Camon i4","battery_capacity_mAh":3500,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.33,"price_usd":86.74} {"index":{"_index":"mobile_phones"}} {"id":465,"name":"falsekia 4.2","brand":"falsekia","model":"4.2","battery_capacity_mAh":3000,"screen_size_inches":5.71,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":466,"name":"falsekia 3.2","brand":"falsekia","model":"3.2","battery_capacity_mAh":4000,"screen_size_inches":6.26,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":70.76,"price_usd":83.7} {"index":{"_index":"mobile_phones"}} {"id":467,"name":"Samsung Galaxy M10","brand":"Samsung","model":"Galaxy M10","battery_capacity_mAh":3400,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":468,"name":"Micromax Infinity N12","brand":"Micromax","model":"Infinity N12","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":469,"name":"Coolpad falsete 8","brand":"Coolpad","model":"falsete 8","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":78.61,"price_usd":92.99} {"index":{"_index":"mobile_phones"}} {"id":470,"name":"Samsung Galaxy J6+","brand":"Samsung","model":"Galaxy J6+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":471,"name":"Samsung Galaxy J4+","brand":"Samsung","model":"Galaxy J4+","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":472,"name":"Samsung Galaxy J2 Core","brand":"Samsung","model":"Galaxy J2 Core","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.47,"price_usd":77.44} {"index":{"_index":"mobile_phones"}} {"id":473,"name":"10.or D2","brand":"10.or","model":"D2","battery_capacity_mAh":3200,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":474,"name":"Coolpad Mega 5A","brand":"Coolpad","model":"Mega 5A","battery_capacity_mAh":2500,"screen_size_inches":5.47,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":475,"name":"Infinix Smart 2","brand":"Infinix","model":"Smart 2","battery_capacity_mAh":3050,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":476,"name":"Infinix Hot 6 Pro","brand":"Infinix","model":"Hot 6 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":477,"name":"iVoomi i2 Lite","brand":"iVoomi","model":"i2 Lite","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":478,"name":"Hofalser 7S","brand":"Hofalser","model":"7S","battery_capacity_mAh":3020,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":479,"name":"Coolpad falsete 6","brand":"Coolpad","model":"falsete 6","battery_capacity_mAh":4070,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":480,"name":"Panasonic Eluga Ray 550","brand":"Panasonic","model":"Eluga Ray 550","battery_capacity_mAh":3250,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":60.38,"price_usd":71.42} {"index":{"_index":"mobile_phones"}} {"id":481,"name":"falsekia 1","brand":"falsekia","model":"1","battery_capacity_mAh":2150,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.41,"price_usd":58.45} {"index":{"_index":"mobile_phones"}} {"id":482,"name":"Tecfalse Camon i","brand":"Tecfalse","model":"Camon i","battery_capacity_mAh":3050,"screen_size_inches":5.65,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.72,"price_usd":74.19} {"index":{"_index":"mobile_phones"}} {"id":483,"name":"iVoomi i1","brand":"iVoomi","model":"i1","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":640,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.84,"price_usd":53.05} {"index":{"_index":"mobile_phones"}} {"id":484,"name":"Samsung Galaxy On7 Prime","brand":"Samsung","model":"Galaxy On7 Prime","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":485,"name":"Intex Aqua Lions X1+","brand":"Intex","model":"Aqua Lions X1+","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":486,"name":"Kult Gladiator","brand":"Kult","model":"Gladiator","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.97,"price_usd":86.31} {"index":{"_index":"mobile_phones"}} {"id":487,"name":"InFocus Turbo 5 Plus","brand":"InFocus","model":"Turbo 5 Plus","battery_capacity_mAh":4850,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":56.58,"price_usd":66.93} {"index":{"_index":"mobile_phones"}} {"id":488,"name":"Nuu Mobile M3","brand":"Nuu Mobile","model":"M3","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.73,"price_usd":52.91} {"index":{"_index":"mobile_phones"}} {"id":489,"name":"Micromax Canvas Infinity","brand":"Micromax","model":"Canvas Infinity","battery_capacity_mAh":2900,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.79,"price_usd":62.44} {"index":{"_index":"mobile_phones"}} {"id":490,"name":"Lyf C451","brand":"Lyf","model":"C451","battery_capacity_mAh":2800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":491,"name":"Panasonic Eluga A3 Pro","brand":"Panasonic","model":"Eluga A3 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.19,"price_usd":112.6} {"index":{"_index":"mobile_phones"}} {"id":492,"name":"Karbonn K9 Kavach 4G","brand":"Karbonn","model":"K9 Kavach 4G","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":493,"name":"Ziox Astra Titan 4G","brand":"Ziox","model":"Astra Titan 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":494,"name":"InFocus Turbo 5","brand":"InFocus","model":"Turbo 5","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.08,"price_usd":88.82} {"index":{"_index":"mobile_phones"}} {"id":495,"name":"Karbonn Aura falsete 2","brand":"Karbonn","model":"Aura falsete 2","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.57,"price_usd":77.57} {"index":{"_index":"mobile_phones"}} {"id":496,"name":"Zopo Speed X","brand":"Zopo","model":"Speed X","battery_capacity_mAh":2680,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.25,"price_usd":92.57} {"index":{"_index":"mobile_phones"}} {"id":497,"name":"Intex Elyt e7","brand":"Intex","model":"Elyt e7","battery_capacity_mAh":4020,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":498,"name":"Micromax Canvas 2 (2017)","brand":"Micromax","model":"Canvas 2 (2017)","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":499,"name":"Tecfalse i7","brand":"Tecfalse","model":"i7","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.83,"price_usd":112.17} {"index":{"_index":"mobile_phones"}} {"id":500,"name":"Lava Z10","brand":"Lava","model":"Z10","battery_capacity_mAh":2620,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.34,"price_usd":111.6} {"index":{"_index":"mobile_phones"}} {"id":501,"name":"Vivo Y66","brand":"Vivo","model":"Y66","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":502,"name":"Zopo Flash X Plus","brand":"Zopo","model":"Flash X Plus","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":503,"name":"Vivo Y55s","brand":"Vivo","model":"Y55s","battery_capacity_mAh":2730,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":504,"name":"falsekia 3","brand":"falsekia","model":"3","battery_capacity_mAh":2630,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.98,"price_usd":86.33} {"index":{"_index":"mobile_phones"}} {"id":505,"name":"Intex Aqua Supreme+","brand":"Intex","model":"Aqua Supreme+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":506,"name":"ZTE Blade A2 Plus","brand":"ZTE","model":"Blade A2 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":132.19,"price_usd":156.37} {"index":{"_index":"mobile_phones"}} {"id":507,"name":"Panasonic Eluga Prim","brand":"Panasonic","model":"Eluga Prim","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.26,"price_usd":105.59} {"index":{"_index":"mobile_phones"}} {"id":508,"name":"Coolpad Mega 3","brand":"Coolpad","model":"Mega 3","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1080,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":3,"3G":"true","4G":"true","price_gbp":48.55,"price_usd":57.43} {"index":{"_index":"mobile_phones"}} {"id":509,"name":"Coolpad Mega 2.5D","brand":"Coolpad","model":"Mega 2.5D","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":510,"name":"Gionee S6 Pro","brand":"Gionee","model":"S6 Pro","battery_capacity_mAh":3130,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":511,"name":"Panasonic Eluga Arc","brand":"Panasonic","model":"Eluga Arc","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.81,"price_usd":61.29} {"index":{"_index":"mobile_phones"}} {"id":512,"name":"Vivo V3","brand":"Vivo","model":"V3","battery_capacity_mAh":2550,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.43,"price_usd":187.41} {"index":{"_index":"mobile_phones"}} {"id":513,"name":"Micromax Canvas Spark 3","brand":"Micromax","model":"Canvas Spark 3","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":41.97,"price_usd":49.64} {"index":{"_index":"mobile_phones"}} {"id":514,"name":"InFocus Bingo 21","brand":"InFocus","model":"Bingo 21","battery_capacity_mAh":2300,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":850,"resolution_y":480,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.56,"price_usd":46.79} {"index":{"_index":"mobile_phones"}} {"id":515,"name":"Hofalser Holly 2 Plus","brand":"Hofalser","model":"Holly 2 Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":90.49,"price_usd":107.04} {"index":{"_index":"mobile_phones"}} {"id":516,"name":"Karbonn Quattro L50 HD","brand":"Karbonn","model":"Quattro L50 HD","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":517,"name":"Lyf Earth 1","brand":"Lyf","model":"Earth 1","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":518,"name":"Onida i4G1","brand":"Onida","model":"i4G1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"false","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":56.95,"price_usd":67.37} {"index":{"_index":"mobile_phones"}} {"id":519,"name":"HTC One X9","brand":"HTC","model":"One X9","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":156.21,"price_usd":184.79} {"index":{"_index":"mobile_phones"}} {"id":520,"name":"Intex Aqua Ace","brand":"Intex","model":"Aqua Ace","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":521,"name":"Lava Pixel V2","brand":"Lava","model":"Pixel V2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":140.67,"price_usd":166.4} {"index":{"_index":"mobile_phones"}} {"id":522,"name":"Gionee F103","brand":"Gionee","model":"F103","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":107.88,"price_usd":127.61} {"index":{"_index":"mobile_phones"}} {"id":523,"name":"Micromax Canvas Nitro 4G","brand":"Micromax","model":"Canvas Nitro 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":524,"name":"Vivo V1Max","brand":"Vivo","model":"V1Max","battery_capacity_mAh":2720,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.49,"price_usd":162.64} {"index":{"_index":"mobile_phones"}} {"id":525,"name":"Micromax Canvas Selfie 2","brand":"Micromax","model":"Canvas Selfie 2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":526,"name":"Panasonic Eluga Icon","brand":"Panasonic","model":"Eluga Icon","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":527,"name":"Karbonn Titanium Mach Five","brand":"Karbonn","model":"Titanium Mach Five","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":528,"name":"InFocus M370","brand":"InFocus","model":"M370","battery_capacity_mAh":2230,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":529,"name":"Micromax Canvas Xpress 2","brand":"Micromax","model":"Canvas Xpress 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":530,"name":"Lava Pixel V1","brand":"Lava","model":"Pixel V1","battery_capacity_mAh":2650,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":531,"name":"Micromax Canvas Doodle 4","brand":"Micromax","model":"Canvas Doodle 4","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":532,"name":"Sony Xperia Z3+","brand":"Sony","model":"Xperia Z3+","battery_capacity_mAh":2930,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20.7,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":369.28,"price_usd":436.82} {"index":{"_index":"mobile_phones"}} {"id":533,"name":"LG G4 Stylus","brand":"LG","model":"G4 Stylus","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":534,"name":"Intex Cloud N","brand":"Intex","model":"Cloud N","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.02,"price_usd":43.79} {"index":{"_index":"mobile_phones"}} {"id":535,"name":"Micromax Unite 3","brand":"Micromax","model":"Unite 3","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":536,"name":"Micromax Canvas Spark","brand":"Micromax","model":"Canvas Spark","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":537,"name":"Microsoft Lumia 540 Dual SIM","brand":"Microsoft","model":"Lumia 540 Dual SIM","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":538,"name":"HTC One M9+","brand":"HTC","model":"One M9+","battery_capacity_mAh":2840,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":20,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":116.34,"price_usd":137.62} {"index":{"_index":"mobile_phones"}} {"id":539,"name":"Intex Aqua Speed HD","brand":"Intex","model":"Aqua Speed HD","battery_capacity_mAh":1700,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":540,"name":"Karbonn Titanium Mach Two S360","brand":"Karbonn","model":"Titanium Mach Two S360","battery_capacity_mAh":1900,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":82.5,"price_usd":97.59} {"index":{"_index":"mobile_phones"}} {"id":541,"name":"BlackBerry Leap","brand":"BlackBerry","model":"Leap","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":76.15,"price_usd":90.08} {"index":{"_index":"mobile_phones"}} {"id":542,"name":"Asus ZenFone C (ZC451CG)","brand":"Asus","model":"ZenFone C (ZC451CG)","battery_capacity_mAh":2100,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":543,"name":"Lava Iris X8","brand":"Lava","model":"Iris X8","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":544,"name":"Gionee Pioneer P6","brand":"Gionee","model":"Pioneer P6","battery_capacity_mAh":1950,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":43.89,"price_usd":51.92} {"index":{"_index":"mobile_phones"}} {"id":545,"name":"Karbonn Machone Titanium S310","brand":"Karbonn","model":"Machone Titanium S310","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":546,"name":"Micromax Canvas Hue","brand":"Micromax","model":"Canvas Hue","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":547,"name":"BlackBerry Classic","brand":"BlackBerry","model":"Classic","battery_capacity_mAh":2515,"screen_size_inches":3.5,"touchscreen":"true","resolution_x":720,"resolution_y":720,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":147.0,"price_usd":173.89} {"index":{"_index":"mobile_phones"}} {"id":548,"name":"Intex Aqua Power","brand":"Intex","model":"Aqua Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":549,"name":"Gionee Marathon M3","brand":"Gionee","model":"Marathon M3","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":36.91,"price_usd":43.66} {"index":{"_index":"mobile_phones"}} {"id":550,"name":"Hofalser Holly","brand":"Hofalser","model":"Holly","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":551,"name":"Gionee Elife S5.1","brand":"Gionee","model":"Elife S5.1","battery_capacity_mAh":2050,"screen_size_inches":4.8,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":552,"name":"HTC Desire 816G","brand":"HTC","model":"Desire 816G","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":232.58,"price_usd":275.12} {"index":{"_index":"mobile_phones"}} {"id":553,"name":"Lefalsevo Vibe X2","brand":"Lefalsevo","model":"Vibe X2","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":185.08,"price_usd":218.93} {"index":{"_index":"mobile_phones"}} {"id":554,"name":"ZTE V5","brand":"ZTE","model":"V5","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":555,"name":"Xolo Play 8X-1100","brand":"Xolo","model":"Play 8X-1100","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":62.27,"price_usd":73.66} {"index":{"_index":"mobile_phones"}} {"id":556,"name":"LG G3 Stylus","brand":"LG","model":"G3 Stylus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":110.95,"price_usd":131.24} {"index":{"_index":"mobile_phones"}} {"id":557,"name":"iBall Andi 5K Panther","brand":"iBall","model":"Andi 5K Panther","battery_capacity_mAh":1900,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":558,"name":"HTC Desire 616 Dual SIM","brand":"HTC","model":"Desire 616 Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":559,"name":"LG G3 Beat","brand":"LG","model":"G3 Beat","battery_capacity_mAh":2540,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":560,"name":"Xolo Win Q900s","brand":"Xolo","model":"Win Q900s","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":47.54,"price_usd":56.24} {"index":{"_index":"mobile_phones"}} {"id":561,"name":"Sony Xperia T3","brand":"Sony","model":"Xperia T3","battery_capacity_mAh":2500,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.1,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":195.56,"price_usd":231.33} {"index":{"_index":"mobile_phones"}} {"id":562,"name":"Micromax Unite 2","brand":"Micromax","model":"Unite 2","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":563,"name":"Lava Iris X1","brand":"Lava","model":"Iris X1","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":38.41,"price_usd":45.44} {"index":{"_index":"mobile_phones"}} {"id":564,"name":"BlackBerry Z3","brand":"BlackBerry","model":"Z3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.1,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":200.95,"price_usd":237.71} {"index":{"_index":"mobile_phones"}} {"id":565,"name":"Lava Iris Pro 20","brand":"Lava","model":"Iris Pro 20","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":53.31,"price_usd":63.06} {"index":{"_index":"mobile_phones"}} {"id":566,"name":"LG L90 Dual","brand":"LG","model":"L90 Dual","battery_capacity_mAh":2540,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":567,"name":"Karbonn Titanium Octane Plus","brand":"Karbonn","model":"Titanium Octane Plus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":132.14,"price_usd":156.31} {"index":{"_index":"mobile_phones"}} {"id":568,"name":"Lefalsevo S860","brand":"Lefalsevo","model":"S860","battery_capacity_mAh":4000,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":1.5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":198.29,"price_usd":234.56} {"index":{"_index":"mobile_phones"}} {"id":569,"name":"Micromax Canvas Turbo Mini","brand":"Micromax","model":"Canvas Turbo Mini","battery_capacity_mAh":1800,"screen_size_inches":4.69,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":68.69,"price_usd":81.26} {"index":{"_index":"mobile_phones"}} {"id":570,"name":"Intex Aqua Octa","brand":"Intex","model":"Aqua Octa","battery_capacity_mAh":2300,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":177.87,"price_usd":210.41} {"index":{"_index":"mobile_phones"}} {"id":571,"name":"Xolo Q3000","brand":"Xolo","model":"Q3000","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":191.84,"price_usd":226.92} {"index":{"_index":"mobile_phones"}} {"id":572,"name":"Gionee Pioneer P3","brand":"Gionee","model":"Pioneer P3","battery_capacity_mAh":1700,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":79.26,"price_usd":93.76} {"index":{"_index":"mobile_phones"}} {"id":573,"name":"falsekia Lumia 525","brand":"falsekia","model":"Lumia 525","battery_capacity_mAh":1430,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":574,"name":"Xolo Q2000","brand":"Xolo","model":"Q2000","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":153.72,"price_usd":181.83} {"index":{"_index":"mobile_phones"}} {"id":575,"name":"Micromax Canvas Turbo","brand":"Micromax","model":"Canvas Turbo","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":184.98,"price_usd":218.82} {"index":{"_index":"mobile_phones"}} {"id":576,"name":"falsekia Lumia 1320","brand":"falsekia","model":"Lumia 1320","battery_capacity_mAh":3400,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.34,"price_usd":124.61} {"index":{"_index":"mobile_phones"}} {"id":577,"name":"LG G Pro Lite","brand":"LG","model":"G Pro Lite","battery_capacity_mAh":3140,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":578,"name":"BlackBerry Z30","brand":"BlackBerry","model":"Z30","battery_capacity_mAh":2880,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":2,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":87.78,"price_usd":103.84} {"index":{"_index":"mobile_phones"}} {"id":579,"name":"HTC Desire 500","brand":"HTC","model":"Desire 500","battery_capacity_mAh":1800,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":200.95,"price_usd":237.71} {"index":{"_index":"mobile_phones"}} {"id":580,"name":"falsekia Lumia 625","brand":"falsekia","model":"Lumia 625","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":581,"name":"Xolo Play T1000","brand":"Xolo","model":"Play T1000","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":149.69,"price_usd":177.07} {"index":{"_index":"mobile_phones"}} {"id":582,"name":"Gionee Elife E3","brand":"Gionee","model":"Elife E3","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":583,"name":"Samsung Galaxy S4 Zoom","brand":"Samsung","model":"Galaxy S4 Zoom","battery_capacity_mAh":2330,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":560,"resolution_y":960,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":16,"front_camera":1.9,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":584,"name":"HTC Desire 600","brand":"HTC","model":"Desire 600","battery_capacity_mAh":1860,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":1.6,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":237.97,"price_usd":281.5} {"index":{"_index":"mobile_phones"}} {"id":585,"name":"Samsung Galaxy Pocket","brand":"Samsung","model":"Galaxy Pocket","battery_capacity_mAh":1200,"screen_size_inches":2.8,"touchscreen":"true","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":289,"internal_storage_GB":3,"rear_camera":2,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":33.74,"price_usd":39.91} {"index":{"_index":"mobile_phones"}} {"id":586,"name":"Samsung Galaxy Grand Duos","brand":"Samsung","model":"Galaxy Grand Duos","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":587,"name":"falsekia Asha 501","brand":"falsekia","model":"Asha 501","battery_capacity_mAh":1200,"screen_size_inches":3,"touchscreen":"true","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":64,"internal_storage_GB":0.128,"rear_camera":3.2,"front_camera":0,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":588,"name":"falsekia Lumia 610","brand":"falsekia","model":"Lumia 610","battery_capacity_mAh":1300,"screen_size_inches":3.7,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":589,"name":"falsekia Lumia 520","brand":"falsekia","model":"Lumia 520","battery_capacity_mAh":1430,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":40.72,"price_usd":48.17} {"index":{"_index":"mobile_phones"}} {"id":590,"name":"LG Optimus L3 II Dual","brand":"LG","model":"Optimus L3 II Dual","battery_capacity_mAh":1540,"screen_size_inches":3.2,"touchscreen":"true","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":591,"name":"BlackBerry Curve 9220","brand":"BlackBerry","model":"Curve 9220","battery_capacity_mAh":1450,"screen_size_inches":2.44,"touchscreen":"false","resolution_x":240,"resolution_y":320,"processor":1,"ram_memory_mb":512,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":592,"name":"Coolpad Cool 5","brand":"Coolpad","model":"Cool 5","battery_capacity_mAh":4000,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":593,"name":"Innelo 1","brand":"iVoomi","model":"Innelo 1","battery_capacity_mAh":3000,"screen_size_inches":5.86,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":594,"name":"Mobiistar XQ Dual","brand":"Mobiistar","model":"XQ Dual","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":595,"name":"Comio X1 falsete","brand":"Comio","model":"X1 falsete","battery_capacity_mAh":2900,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.63,"price_usd":78.82} {"index":{"_index":"mobile_phones"}} {"id":596,"name":"Intex Aqua Lions N1","brand":"Intex","model":"Aqua Lions N1","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":27.39,"price_usd":32.4} {"index":{"_index":"mobile_phones"}} {"id":597,"name":"Karbonn A40 Indian","brand":"Karbonn","model":"A40 Indian","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.37,"price_usd":40.66} {"index":{"_index":"mobile_phones"}} {"id":598,"name":"Videocon Metal Pro 2","brand":"Videocon","model":"Metal Pro 2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":599,"name":"iVoomi Me 1+","brand":"iVoomi","model":"Me 1+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":600,"name":"iVoomi Me 1","brand":"iVoomi","model":"Me 1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":601,"name":"Asus ZenFone Live","brand":"Asus","model":"ZenFone Live","battery_capacity_mAh":2650,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":602,"name":"Intex Aqua Crystal","brand":"Intex","model":"Aqua Crystal","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":603,"name":"Alcatel Pixi 4 (5)","brand":"Alcatel","model":"Pixi 4 (5)","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":604,"name":"Reach Allure","brand":"Reach","model":"Allure","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":10,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":605,"name":"Karbonn Quattro L52","brand":"Karbonn","model":"Quattro L52","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":91.48,"price_usd":108.21} {"index":{"_index":"mobile_phones"}} {"id":606,"name":"InFocus Bingo 10","brand":"InFocus","model":"Bingo 10","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":607,"name":"HTC Desire 626 Dual SIM","brand":"HTC","model":"Desire 626 Dual SIM","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":608,"name":"Intex Aqua Trend","brand":"Intex","model":"Aqua Trend","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.0,"price_usd":55.6} {"index":{"_index":"mobile_phones"}} {"id":609,"name":"HTC Desire 310","brand":"HTC","model":"Desire 310","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":610,"name":"Xolo Q1000 Opus","brand":"Xolo","model":"Q1000 Opus","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":100.47,"price_usd":118.84} {"index":{"_index":"mobile_phones"}} {"id":611,"name":"BlackBerry 9720","brand":"BlackBerry","model":"9720","battery_capacity_mAh":1450,"screen_size_inches":2.8,"touchscreen":"true","resolution_x":360,"resolution_y":480,"processor":1,"ram_memory_mb":512,"internal_storage_GB":0.512,"rear_camera":5,"front_camera":0,"operating_system":"BlackBerry","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":612,"name":"Zen Cinemax 3","brand":"Zen","model":"Cinemax 3","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":613,"name":"Samsung Galaxy S20+","brand":"Samsung","model":"Galaxy S20+","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":782.64,"price_usd":925.8} {"index":{"_index":"mobile_phones"}} {"id":614,"name":"Samsung Galaxy S20 Ultra","brand":"Samsung","model":"Galaxy S20 Ultra","battery_capacity_mAh":5000,"screen_size_inches":6.9,"touchscreen":"true","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":128,"rear_camera":108,"front_camera":40,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":983.6,"price_usd":1163.51} {"index":{"_index":"mobile_phones"}} {"id":615,"name":"Redmi 8A Dual","brand":"Xiaomi","model":"Redmi 8A Dual","battery_capacity_mAh":5000,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":616,"name":"Lava Z53","brand":"Lava","model":"Z53","battery_capacity_mAh":4120,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":600,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.07,"price_usd":60.42} {"index":{"_index":"mobile_phones"}} {"id":617,"name":"Samsung Galaxy Z Flip","brand":"Samsung","model":"Galaxy Z Flip","battery_capacity_mAh":3300,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2636,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":1850.77,"price_usd":2189.29} {"index":{"_index":"mobile_phones"}} {"id":618,"name":"Samsung Galaxy S20","brand":"Samsung","model":"Galaxy S20","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1440,"resolution_y":3200,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":708.61,"price_usd":838.22} {"index":{"_index":"mobile_phones"}} {"id":619,"name":"Lava Z71","brand":"Lava","model":"Z71","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":620,"name":"falsekia 2.3","brand":"falsekia","model":"2.3","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.61,"price_usd":89.44} {"index":{"_index":"mobile_phones"}} {"id":621,"name":"Tecfalse Spark Power","brand":"Tecfalse","model":"Spark Power","battery_capacity_mAh":6000,"screen_size_inches":6.35,"touchscreen":"true","resolution_x":720,"resolution_y":1548,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":622,"name":"Vivo Y19","brand":"Vivo","model":"Y19","battery_capacity_mAh":5000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":623,"name":"Lava Z41","brand":"Lava","model":"Z41","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":624,"name":"Tecfalse Camon 12 Air","brand":"Tecfalse","model":"Camon 12 Air","battery_capacity_mAh":4000,"screen_size_inches":6.55,"touchscreen":"true","resolution_x":720,"resolution_y":1600,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.34,"price_usd":124.61} {"index":{"_index":"mobile_phones"}} {"id":625,"name":"Micromax iOne falsete","brand":"Micromax","model":"iOne falsete","battery_capacity_mAh":3950,"screen_size_inches":6.09,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":70.8,"price_usd":83.75} {"index":{"_index":"mobile_phones"}} {"id":626,"name":"Google Pixel 4 XL","brand":"Google","model":"Pixel 4 XL","battery_capacity_mAh":3700,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1440,"resolution_y":3040,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":887.36,"price_usd":1049.67} {"index":{"_index":"mobile_phones"}} {"id":627,"name":"Google Pixel 4","brand":"Google","model":"Pixel 4","battery_capacity_mAh":2800,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":735.06,"price_usd":869.51} {"index":{"_index":"mobile_phones"}} {"id":628,"name":"Lefalsevo K10 Plus","brand":"Lefalsevo","model":"K10 Plus","battery_capacity_mAh":4050,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":629,"name":"Samsung Galaxy A70s","brand":"Samsung","model":"Galaxy A70s","battery_capacity_mAh":4500,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":64,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":274.98,"price_usd":325.27} {"index":{"_index":"mobile_phones"}} {"id":630,"name":"iPhone 11 Pro","brand":"Apple","model":"iPhone 11 Pro","battery_capacity_mAh":3046,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1125,"resolution_y":2436,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":12,"operating_system":"iOS","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":1024.85,"price_usd":1212.31} {"index":{"_index":"mobile_phones"}} {"id":631,"name":"Samsung Galaxy A20s","brand":"Samsung","model":"Galaxy A20s","battery_capacity_mAh":4000,"screen_size_inches":6.5,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":632,"name":"Oppo Refalse 2F","brand":"Oppo","model":"Refalse 2F","battery_capacity_mAh":4000,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":221.05,"price_usd":261.48} {"index":{"_index":"mobile_phones"}} {"id":633,"name":"Samsung Galaxy A30s","brand":"Samsung","model":"Galaxy A30s","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":25,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.86,"price_usd":174.9} {"index":{"_index":"mobile_phones"}} {"id":634,"name":"Lava Z93","brand":"Lava","model":"Z93","battery_capacity_mAh":3500,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":85.66,"price_usd":101.33} {"index":{"_index":"mobile_phones"}} {"id":635,"name":"HTC Wildfire X","brand":"HTC","model":"Wildfire X","battery_capacity_mAh":3300,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":636,"name":"Samsung Galaxy A10s","brand":"Samsung","model":"Galaxy A10s","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":637,"name":"Huawei Mate 30 Pro","brand":"Huawei","model":"Mate 30 Pro","battery_capacity_mAh":4500,"screen_size_inches":6.53,"touchscreen":"true","resolution_x":1176,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":40,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":817.55,"price_usd":967.08} {"index":{"_index":"mobile_phones"}} {"id":638,"name":"Samsung Galaxy falsete 10","brand":"Samsung","model":"Galaxy falsete 10","battery_capacity_mAh":3500,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":256,"rear_camera":12,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":740.34,"price_usd":875.75} {"index":{"_index":"mobile_phones"}} {"id":639,"name":"Tecfalse Phantom 9","brand":"Tecfalse","model":"Phantom 9","battery_capacity_mAh":3500,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":16,"front_camera":32,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":640,"name":"LG W30 Pro","brand":"LG","model":"W30 Pro","battery_capacity_mAh":4050,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":131.99,"price_usd":156.14} {"index":{"_index":"mobile_phones"}} {"id":641,"name":"Vivo Y12","brand":"Vivo","model":"Y12","battery_capacity_mAh":5000,"screen_size_inches":6.35,"touchscreen":"true","resolution_x":720,"resolution_y":1544,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":101.0,"price_usd":119.48} {"index":{"_index":"mobile_phones"}} {"id":642,"name":"Itel A46","brand":"Itel","model":"A46","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"false","bluetooth":"false","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":47.07,"price_usd":55.67} {"index":{"_index":"mobile_phones"}} {"id":643,"name":"Huawei Y9 Prime 2019","brand":"Huawei","model":"Y9 Prime 2019","battery_capacity_mAh":4000,"screen_size_inches":6.59,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":152.83,"price_usd":180.78} {"index":{"_index":"mobile_phones"}} {"id":644,"name":"Samsung Galaxy A80","brand":"Samsung","model":"Galaxy A80","battery_capacity_mAh":3700,"screen_size_inches":6.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2400,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":380.65,"price_usd":450.27} {"index":{"_index":"mobile_phones"}} {"id":645,"name":"Oppo Refalse","brand":"Oppo","model":"Refalse","battery_capacity_mAh":3765,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":48,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":285.46,"price_usd":337.67} {"index":{"_index":"mobile_phones"}} {"id":646,"name":"Samsung Galaxy A2 Core","brand":"Samsung","model":"Galaxy A2 Core","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":55.95,"price_usd":66.18} {"index":{"_index":"mobile_phones"}} {"id":647,"name":"Samsung Galaxy A20","brand":"Samsung","model":"Galaxy A20","battery_capacity_mAh":4000,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":720,"resolution_y":1560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":104.71,"price_usd":123.86} {"index":{"_index":"mobile_phones"}} {"id":648,"name":"Vivo Y91i","brand":"Vivo","model":"Y91i","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":649,"name":"Panasonic Eluga Ray 800","brand":"Panasonic","model":"Eluga Ray 800","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.62,"price_usd":81.17} {"index":{"_index":"mobile_phones"}} {"id":650,"name":"Lava Z40","brand":"Lava","model":"Z40","battery_capacity_mAh":2250,"screen_size_inches":4,"touchscreen":"true","resolution_x":400,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":651,"name":"Samsung Galaxy Fold","brand":"Samsung","model":"Galaxy Fold","battery_capacity_mAh":4380,"screen_size_inches":7.3,"touchscreen":"true","resolution_x":1536,"resolution_y":2152,"processor":8,"ram_memory_mb":12000,"internal_storage_GB":512,"rear_camera":16,"front_camera":10,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":1745.1,"price_usd":2064.29} {"index":{"_index":"mobile_phones"}} {"id":652,"name":"Gionee F205 Pro","brand":"Gionee","model":"F205 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":47.47,"price_usd":56.15} {"index":{"_index":"mobile_phones"}} {"id":653,"name":"Tecfalse Camon iAce 2X","brand":"Tecfalse","model":"Camon iAce 2X","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":654,"name":"Tecfalse Camon iAce 2","brand":"Tecfalse","model":"Camon iAce 2","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":655,"name":"Coolpad Cool 3","brand":"Coolpad","model":"Cool 3","battery_capacity_mAh":3000,"screen_size_inches":5.71,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":49.17,"price_usd":58.16} {"index":{"_index":"mobile_phones"}} {"id":656,"name":"Vivo Y91","brand":"Vivo","model":"Y91","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":88.3,"price_usd":104.45} {"index":{"_index":"mobile_phones"}} {"id":657,"name":"Itel A44 Air","brand":"Itel","model":"A44 Air","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.67,"price_usd":46.93} {"index":{"_index":"mobile_phones"}} {"id":658,"name":"Oppo R15 Pro","brand":"Oppo","model":"R15 Pro","battery_capacity_mAh":3400,"screen_size_inches":6.28,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":128,"rear_camera":20,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":151.23,"price_usd":178.89} {"index":{"_index":"mobile_phones"}} {"id":659,"name":"10.or G2","brand":"10.or","model":"G2","battery_capacity_mAh":5000,"screen_size_inches":6.18,"touchscreen":"true","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":660,"name":"Xolo Era 4X","brand":"Xolo","model":"Era 4X","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":661,"name":"Micromax Infinity N11","brand":"Micromax","model":"Infinity N11","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":662,"name":"Tambo TA-3","brand":"Tambo","model":"TA-3","battery_capacity_mAh":2100,"screen_size_inches":4.95,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.08,"price_usd":47.42} {"index":{"_index":"mobile_phones"}} {"id":663,"name":"Tambo TA-2","brand":"Tambo","model":"TA-2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":35.96,"price_usd":42.54} {"index":{"_index":"mobile_phones"}} {"id":664,"name":"Meizu M6T","brand":"Meizu","model":"M6T","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":665,"name":"Meizu C9","brand":"Meizu","model":"C9","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.43,"price_usd":44.28} {"index":{"_index":"mobile_phones"}} {"id":666,"name":"Motorola Moto G7 Power","brand":"Motorola","model":"Moto G7 Power","battery_capacity_mAh":5000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":114.97,"price_usd":135.99} {"index":{"_index":"mobile_phones"}} {"id":667,"name":"Motorola Moto G7","brand":"Motorola","model":"Moto G7","battery_capacity_mAh":3000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1080,"resolution_y":2270,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.78,"price_usd":112.11} {"index":{"_index":"mobile_phones"}} {"id":668,"name":"Itel A44 Power","brand":"Itel","model":"A44 Power","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":669,"name":"Vivo Y95","brand":"Vivo","model":"Y95","battery_capacity_mAh":4030,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":111.04,"price_usd":131.35} {"index":{"_index":"mobile_phones"}} {"id":670,"name":"Lava Z81","brand":"Lava","model":"Z81","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":671,"name":"Vivo Y93","brand":"Vivo","model":"Y93","battery_capacity_mAh":4030,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1580,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":105.24,"price_usd":124.48} {"index":{"_index":"mobile_phones"}} {"id":672,"name":"Micromax Bharat 5 Infinity Edition","brand":"Micromax","model":"Bharat 5 Infinity Edition","battery_capacity_mAh":5000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":673,"name":"Micromax Spark Go","brand":"Micromax","model":"Spark Go","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":32.78,"price_usd":38.77} {"index":{"_index":"mobile_phones"}} {"id":674,"name":"Panasonic Eluga Z1 Pro","brand":"Panasonic","model":"Eluga Z1 Pro","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":675,"name":"Panasonic Eluga Z1","brand":"Panasonic","model":"Eluga Z1","battery_capacity_mAh":4000,"screen_size_inches":6.19,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":676,"name":"Panasonic Eluga Ray 530","brand":"Panasonic","model":"Eluga Ray 530","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":677,"name":"Razer Phone 2","brand":"Razer","model":"Phone 2","battery_capacity_mAh":4000,"screen_size_inches":5.72,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":581.6,"price_usd":687.98} {"index":{"_index":"mobile_phones"}} {"id":678,"name":"iVoomi Z1","brand":"iVoomi","model":"Z1","battery_capacity_mAh":2800,"screen_size_inches":5.67,"touchscreen":"true","resolution_x":720,"resolution_y":1498,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":679,"name":"Panasonic Eluga X1","brand":"Panasonic","model":"Eluga X1","battery_capacity_mAh":3000,"screen_size_inches":6.18,"touchscreen":"true","resolution_x":1080,"resolution_y":2246,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":94.12,"price_usd":111.33} {"index":{"_index":"mobile_phones"}} {"id":680,"name":"Intex Staari 11","brand":"Intex","model":"Staari 11","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":681,"name":"iVoomi iPro","brand":"iVoomi","model":"iPro","battery_capacity_mAh":2000,"screen_size_inches":4.95,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":682,"name":"Vivo V11","brand":"Vivo","model":"V11","battery_capacity_mAh":3315,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2340,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":150.49,"price_usd":178.02} {"index":{"_index":"mobile_phones"}} {"id":683,"name":"Motorola One","brand":"Motorola","model":"One","battery_capacity_mAh":3000,"screen_size_inches":5.9,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":684,"name":"HTC U12 Life","brand":"HTC","model":"U12 Life","battery_capacity_mAh":3600,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":137.39,"price_usd":162.52} {"index":{"_index":"mobile_phones"}} {"id":685,"name":"Yu Ace","brand":"Yu","model":"Ace","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":686,"name":"Homtom H5","brand":"Homtom","model":"H5","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.19,"price_usd":60.55} {"index":{"_index":"mobile_phones"}} {"id":687,"name":"Homtom H3","brand":"Homtom","model":"H3","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":688,"name":"Homtom H1","brand":"Homtom","model":"H1","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":640,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.65,"price_usd":46.9} {"index":{"_index":"mobile_phones"}} {"id":689,"name":"Lava Z60s","brand":"Lava","model":"Z60s","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1080,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":690,"name":"Itel A22 Pro","brand":"Itel","model":"A22 Pro","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.01,"price_usd":54.42} {"index":{"_index":"mobile_phones"}} {"id":691,"name":"Itel A45","brand":"Itel","model":"A45","battery_capacity_mAh":2700,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":692,"name":"Samsung Galaxy A8 Star","brand":"Samsung","model":"Galaxy A8 Star","battery_capacity_mAh":3700,"screen_size_inches":6.28,"touchscreen":"true","resolution_x":1880,"resolution_y":2220,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":219.99,"price_usd":260.23} {"index":{"_index":"mobile_phones"}} {"id":693,"name":"Vivo Y83 Pro","brand":"Vivo","model":"Y83 Pro","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":147.54,"price_usd":174.53} {"index":{"_index":"mobile_phones"}} {"id":694,"name":"Tecfalse Camon iSky 2","brand":"Tecfalse","model":"Camon iSky 2","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":695,"name":"Tecfalse Camon iACE","brand":"Tecfalse","model":"Camon iACE","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":696,"name":"Oppo R17","brand":"Oppo","model":"R17","battery_capacity_mAh":3500,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":8000,"internal_storage_GB":128,"rear_camera":16,"front_camera":25,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":190.27,"price_usd":225.07} {"index":{"_index":"mobile_phones"}} {"id":697,"name":"Meizu 16","brand":"Meizu","model":"16","battery_capacity_mAh":3010,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":206.13,"price_usd":243.84} {"index":{"_index":"mobile_phones"}} {"id":698,"name":"BlackBerry Evolve","brand":"BlackBerry","model":"Evolve","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":699,"name":"Samsung Galaxy On8 (2018)","brand":"Samsung","model":"Galaxy On8 (2018)","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":700,"name":"Tecfalse Camon iTwin","brand":"Tecfalse","model":"Camon iTwin","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":701,"name":"Vivo Y71i","brand":"Vivo","model":"Y71i","battery_capacity_mAh":3285,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"false","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":702,"name":"Alcatel 5V","brand":"Alcatel","model":"5V","battery_capacity_mAh":4000,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1500,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":703,"name":"Intex Infie 33","brand":"Intex","model":"Infie 33","battery_capacity_mAh":3000,"screen_size_inches":5.34,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":704,"name":"Intex Infie 3","brand":"Intex","model":"Infie 3","battery_capacity_mAh":2000,"screen_size_inches":4.95,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":36.49,"price_usd":43.16} {"index":{"_index":"mobile_phones"}} {"id":705,"name":"Oppo A3s","brand":"Oppo","model":"A3s","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":706,"name":"Oppo A5","brand":"Oppo","model":"A5","battery_capacity_mAh":4230,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":707,"name":"Vivo Z10","brand":"Vivo","model":"Z10","battery_capacity_mAh":3225,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":24,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":708,"name":"Samsung Galaxy On6","brand":"Samsung","model":"Galaxy On6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":186.14,"price_usd":220.19} {"index":{"_index":"mobile_phones"}} {"id":709,"name":"Alcatel 1","brand":"Alcatel","model":"1","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":710,"name":"Vivo Y81","brand":"Vivo","model":"Y81","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":103.54,"price_usd":122.48} {"index":{"_index":"mobile_phones"}} {"id":711,"name":"Panasonic P90","brand":"Panasonic","model":"P90","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":712,"name":"Lephone Dazen 6A","brand":"Lephone","model":"Dazen 6A","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":83.55,"price_usd":98.84} {"index":{"_index":"mobile_phones"}} {"id":713,"name":"Comio C1 Pro","brand":"Comio","model":"C1 Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":714,"name":"iVoomi V5","brand":"iVoomi","model":"V5","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":715,"name":"LG Q Stylus+","brand":"LG","model":"Q Stylus+","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":716,"name":"LG Q Stylus","brand":"LG","model":"Q Stylus","battery_capacity_mAh":3300,"screen_size_inches":6.2,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":717,"name":"Lefalsevo A5","brand":"Lefalsevo","model":"A5","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":56.05,"price_usd":66.31} {"index":{"_index":"mobile_phones"}} {"id":718,"name":"falsekia 3.1","brand":"falsekia","model":"3.1","battery_capacity_mAh":2990,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":63.4,"price_usd":74.99} {"index":{"_index":"mobile_phones"}} {"id":719,"name":"Aqua Jazz","brand":"Aqua","model":"Jazz","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":48.64,"price_usd":57.54} {"index":{"_index":"mobile_phones"}} {"id":720,"name":"Vivo Y83","brand":"Vivo","model":"Y83","battery_capacity_mAh":3260,"screen_size_inches":6.22,"touchscreen":"true","resolution_x":720,"resolution_y":1520,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":109.98,"price_usd":130.1} {"index":{"_index":"mobile_phones"}} {"id":721,"name":"BlackBerry KEY2","brand":"BlackBerry","model":"KEY2","battery_capacity_mAh":3500,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1620,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.46,"price_usd":250.14} {"index":{"_index":"mobile_phones"}} {"id":722,"name":"Mobiistar CQ","brand":"Mobiistar","model":"CQ","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.42,"price_usd":53.72} {"index":{"_index":"mobile_phones"}} {"id":723,"name":"Micromax Bharat Go","brand":"Micromax","model":"Bharat Go","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.07,"price_usd":47.4} {"index":{"_index":"mobile_phones"}} {"id":724,"name":"iVoomi i2","brand":"iVoomi","model":"i2","battery_capacity_mAh":4000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":725,"name":"LG Q7+","brand":"LG","model":"Q7+","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":125.32,"price_usd":148.24} {"index":{"_index":"mobile_phones"}} {"id":726,"name":"LG Q7","brand":"LG","model":"Q7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":93.87,"price_usd":111.03} {"index":{"_index":"mobile_phones"}} {"id":727,"name":"HTC U12+","brand":"HTC","model":"U12+","battery_capacity_mAh":3500,"screen_size_inches":6,"touchscreen":"true","resolution_x":1440,"resolution_y":2880,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":793.13,"price_usd":938.2} {"index":{"_index":"mobile_phones"}} {"id":728,"name":"falsekia X6","brand":"falsekia","model":"X6","battery_capacity_mAh":3060,"screen_size_inches":5.8,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":729,"name":"Kult Impulse","brand":"Kult","model":"Impulse","battery_capacity_mAh":4000,"screen_size_inches":5.99,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":46.3,"price_usd":54.77} {"index":{"_index":"mobile_phones"}} {"id":730,"name":"Samsung Galaxy J4","brand":"Samsung","model":"Galaxy J4","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.23,"price_usd":86.63} {"index":{"_index":"mobile_phones"}} {"id":731,"name":"Karbonn Frames S9","brand":"Karbonn","model":"Frames S9","battery_capacity_mAh":2900,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":732,"name":"Intex Staari 10","brand":"Intex","model":"Staari 10","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":733,"name":"Panasonic P95","brand":"Panasonic","model":"P95","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":38.87,"price_usd":45.98} {"index":{"_index":"mobile_phones"}} {"id":734,"name":"LG G7 ThinQ","brand":"LG","model":"G7 ThinQ","battery_capacity_mAh":3000,"screen_size_inches":6.1,"touchscreen":"true","resolution_x":1440,"resolution_y":3120,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":380.74,"price_usd":450.38} {"index":{"_index":"mobile_phones"}} {"id":735,"name":"Samsung Galaxy A6","brand":"Samsung","model":"Galaxy A6","battery_capacity_mAh":3000,"screen_size_inches":5.6,"touchscreen":"true","resolution_x":720,"resolution_y":1480,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":736,"name":"Samsung Galaxy J2 (2018)","brand":"Samsung","model":"Galaxy J2 (2018)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.91,"price_usd":85.06} {"index":{"_index":"mobile_phones"}} {"id":737,"name":"Vivo Y53i","brand":"Vivo","model":"Y53i","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":81.5,"price_usd":96.41} {"index":{"_index":"mobile_phones"}} {"id":738,"name":"Vivo V9 Youth","brand":"Vivo","model":"V9 Youth","battery_capacity_mAh":3260,"screen_size_inches":6.3,"touchscreen":"true","resolution_x":1080,"resolution_y":2280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":739,"name":"Moto E5","brand":"Motorola","model":"Moto E5","battery_capacity_mAh":4000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.08,"price_usd":99.46} {"index":{"_index":"mobile_phones"}} {"id":740,"name":"Vivo Y71","brand":"Vivo","model":"Y71","battery_capacity_mAh":3360,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.9,"price_usd":106.34} {"index":{"_index":"mobile_phones"}} {"id":741,"name":"Coolpad A1","brand":"Coolpad","model":"A1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":48.55,"price_usd":57.43} {"index":{"_index":"mobile_phones"}} {"id":742,"name":"Samsung Galaxy J7 Duo","brand":"Samsung","model":"Galaxy J7 Duo","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":112.53,"price_usd":133.12} {"index":{"_index":"mobile_phones"}} {"id":743,"name":"Hofalser 7A","brand":"Hofalser","model":"7A","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":744,"name":"Lava Z91","brand":"Lava","model":"Z91","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"false","bluetooth":"false","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":745,"name":"Oppo A83 (2018)","brand":"Oppo","model":"A83 (2018)","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.37,"price_usd":118.73} {"index":{"_index":"mobile_phones"}} {"id":746,"name":"LG K9","brand":"LG","model":"K9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.62,"price_usd":78.81} {"index":{"_index":"mobile_phones"}} {"id":747,"name":"Samsung Galaxy J7 Prime 2","brand":"Samsung","model":"Galaxy J7 Prime 2","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":111.05,"price_usd":131.36} {"index":{"_index":"mobile_phones"}} {"id":748,"name":"Intex Aqua Lions E3","brand":"Intex","model":"Aqua Lions E3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":749,"name":"Itel A44 Pro","brand":"Itel","model":"A44 Pro","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.14,"price_usd":48.67} {"index":{"_index":"mobile_phones"}} {"id":750,"name":"Itel A44","brand":"Itel","model":"A44","battery_capacity_mAh":2400,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":480,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":751,"name":"Moto G6 Plus","brand":"Motorola","model":"Moto G6 Plus","battery_capacity_mAh":3200,"screen_size_inches":5.93,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":136.44,"price_usd":161.39} {"index":{"_index":"mobile_phones"}} {"id":752,"name":"Lava Z50","brand":"Lava","model":"Z50","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.02,"price_usd":56.8} {"index":{"_index":"mobile_phones"}} {"id":753,"name":"Sony Xperia XZ2","brand":"Sony","model":"Xperia XZ2","battery_capacity_mAh":3180,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":19,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":612.37,"price_usd":724.38} {"index":{"_index":"mobile_phones"}} {"id":754,"name":"falsekia 8110 4G","brand":"falsekia","model":"8110 4G","battery_capacity_mAh":1500,"screen_size_inches":2.45,"touchscreen":"false","resolution_x":240,"resolution_y":320,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0,"operating_system":"Cyafalsegen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":755,"name":"Alcatel 3V","brand":"Alcatel","model":"3V","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.33,"price_usd":137.61} {"index":{"_index":"mobile_phones"}} {"id":756,"name":"Alcatel 3X","brand":"Alcatel","model":"3X","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":757,"name":"Cat S61","brand":"Cat","model":"S61","battery_capacity_mAh":4500,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":718.14,"price_usd":849.49} {"index":{"_index":"mobile_phones"}} {"id":758,"name":"Karbonn Titanium Jumbo 2","brand":"Karbonn","model":"Titanium Jumbo 2","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":87.0,"price_usd":102.92} {"index":{"_index":"mobile_phones"}} {"id":759,"name":"Celkon UniQ","brand":"Celkon","model":"UniQ","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":76.67,"price_usd":90.69} {"index":{"_index":"mobile_phones"}} {"id":760,"name":"Comio C2 Lite","brand":"Comio","model":"C2 Lite","battery_capacity_mAh":3900,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":761,"name":"Comio S1 Lite","brand":"Comio","model":"S1 Lite","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":762,"name":"Ziox Duopix F9","brand":"Ziox","model":"Duopix F9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":763,"name":"Intex Aqua Lions T1 Lite","brand":"Intex","model":"Aqua Lions T1 Lite","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":764,"name":"Panasonic P100","brand":"Panasonic","model":"P100","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":765,"name":"InFocus A2","brand":"InFocus","model":"A2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":766,"name":"Oppo A71 (2018)","brand":"Oppo","model":"A71 (2018)","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":767,"name":"Vivo Y53","brand":"Vivo","model":"Y53","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":768,"name":"Ziox Astra Star","brand":"Ziox","model":"Astra Star","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":769,"name":"HTC U11 Etrue","brand":"HTC","model":"U11 Etrue","battery_capacity_mAh":3930,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":770,"name":"Karbonn Titanium Frames S7","brand":"Karbonn","model":"Titanium Frames S7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":771,"name":"iVoomi i1s","brand":"iVoomi","model":"i1s","battery_capacity_mAh":3000,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":640,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":772,"name":"Sony Xperia L2","brand":"Sony","model":"Xperia L2","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":775.25,"price_usd":917.05} {"index":{"_index":"mobile_phones"}} {"id":773,"name":"Sony Xperia XA2 Ultra","brand":"Sony","model":"Xperia XA2 Ultra","battery_capacity_mAh":3580,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":23,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":784.39,"price_usd":927.86} {"index":{"_index":"mobile_phones"}} {"id":774,"name":"Micromax Bharat 5 Plus","brand":"Micromax","model":"Bharat 5 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":47.28,"price_usd":55.92} {"index":{"_index":"mobile_phones"}} {"id":775,"name":"Gionee S10 Lite","brand":"Gionee","model":"S10 Lite","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.53,"price_usd":78.69} {"index":{"_index":"mobile_phones"}} {"id":776,"name":"Ziox Duopix R1","brand":"Ziox","model":"Duopix R1","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":777,"name":"Celkon Star 4G+","brand":"Celkon","model":"Star 4G+","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":778,"name":"Karbonn K9 Music 4G","brand":"Karbonn","model":"K9 Music 4G","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.32,"price_usd":52.42} {"index":{"_index":"mobile_phones"}} {"id":779,"name":"Itel A20","brand":"Itel","model":"A20","battery_capacity_mAh":1700,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.65,"price_usd":46.9} {"index":{"_index":"mobile_phones"}} {"id":780,"name":"Jivi Revolution TnT3","brand":"Jivi","model":"Revolution TnT3","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":26.97,"price_usd":31.9} {"index":{"_index":"mobile_phones"}} {"id":781,"name":"Panasonic Eluga I9","brand":"Panasonic","model":"Eluga I9","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":782,"name":"Intex Elyt E6","brand":"Intex","model":"Elyt E6","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.17,"price_usd":84.19} {"index":{"_index":"mobile_phones"}} {"id":783,"name":"Micromax Bharat 2 Plus","brand":"Micromax","model":"Bharat 2 Plus","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":24.75,"price_usd":29.28} {"index":{"_index":"mobile_phones"}} {"id":784,"name":"Micromax Canvas Infinity Pro","brand":"Micromax","model":"Canvas Infinity Pro","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":785,"name":"Kult Ambition","brand":"Kult","model":"Ambition","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":786,"name":"Micromax Bharat 5","brand":"Micromax","model":"Bharat 5","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":787,"name":"Intex Elyt Dual","brand":"Intex","model":"Elyt Dual","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":56.0,"price_usd":66.25} {"index":{"_index":"mobile_phones"}} {"id":788,"name":"Gionee F205","brand":"Gionee","model":"F205","battery_capacity_mAh":2670,"screen_size_inches":5.45,"touchscreen":"true","resolution_x":720,"resolution_y":1440,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":789,"name":"Panasonic P91","brand":"Panasonic","model":"P91","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":790,"name":"Infinix Zero 5","brand":"Infinix","model":"Zero 5","battery_capacity_mAh":4350,"screen_size_inches":5.98,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":791,"name":"Intex Aqua Jewel 2","brand":"Intex","model":"Aqua Jewel 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.56,"price_usd":62.18} {"index":{"_index":"mobile_phones"}} {"id":792,"name":"Intex Aqua Lions T1","brand":"Intex","model":"Aqua Lions T1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.54,"price_usd":56.24} {"index":{"_index":"mobile_phones"}} {"id":793,"name":"Karbonn K9 Smart Eco","brand":"Karbonn","model":"K9 Smart Eco","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":794,"name":"Karbonn K9 Smart Yuva","brand":"Karbonn","model":"K9 Smart Yuva","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.19,"price_usd":47.54} {"index":{"_index":"mobile_phones"}} {"id":795,"name":"Karbonn A1 Indian","brand":"Karbonn","model":"A1 Indian","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":25.91,"price_usd":30.65} {"index":{"_index":"mobile_phones"}} {"id":796,"name":"Billion Capture+","brand":"Billion","model":"Capture+","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":797,"name":"Zen Admire Unity","brand":"Zen","model":"Admire Unity","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":798,"name":"Panasonic Eluga I5","brand":"Panasonic","model":"Eluga I5","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":799,"name":"Itel S21","brand":"Itel","model":"S21","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":800,"name":"Panasonic Eluga A4","brand":"Panasonic","model":"Eluga A4","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.77,"price_usd":74.25} {"index":{"_index":"mobile_phones"}} {"id":801,"name":"Redmi Y1 Lite","brand":"Xiaomi","model":"Redmi Y1 Lite","battery_capacity_mAh":3080,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":802,"name":"Huawei Holly 4 Plus","brand":"Huawei","model":"Holly 4 Plus","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1290,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":803,"name":"Karbonn K9 Smart Selfie","brand":"Karbonn","model":"K9 Smart Selfie","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.71,"price_usd":41.06} {"index":{"_index":"mobile_phones"}} {"id":804,"name":"Celkon Smart 4G","brand":"Celkon","model":"Smart 4G","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":805,"name":"Sony Xperia R1 Plus","brand":"Sony","model":"Xperia R1 Plus","battery_capacity_mAh":2620,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":806,"name":"Sony Xperia R1","brand":"Sony","model":"Xperia R1","battery_capacity_mAh":2620,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":807,"name":"Karbonn Titanium Jumbo","brand":"Karbonn","model":"Titanium Jumbo","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":808,"name":"Micromax Bharat-2 Ultra","brand":"Micromax","model":"Bharat-2 Ultra","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":24.32,"price_usd":28.76} {"index":{"_index":"mobile_phones"}} {"id":809,"name":"falsekia 2","brand":"falsekia","model":"2","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":810,"name":"Lephone W15","brand":"Lephone","model":"W15","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.99,"price_usd":49.67} {"index":{"_index":"mobile_phones"}} {"id":811,"name":"Xolo Era 3","brand":"Xolo","model":"Era 3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":812,"name":"Xolo Era 2V","brand":"Xolo","model":"Era 2V","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":813,"name":"Xolo Era 3X","brand":"Xolo","model":"Era 3X","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":814,"name":"Samsung Galaxy J2 (2017)","brand":"Samsung","model":"Galaxy J2 (2017)","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":815,"name":"Swipe Elite Pro","brand":"Swipe","model":"Elite Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":816,"name":"BlackBerry Motion","brand":"BlackBerry","model":"Motion","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":317.28,"price_usd":375.32} {"index":{"_index":"mobile_phones"}} {"id":817,"name":"Lava Z90","brand":"Lava","model":"Z90","battery_capacity_mAh":2750,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":818,"name":"Lava Z80","brand":"Lava","model":"Z80","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.97,"price_usd":59.11} {"index":{"_index":"mobile_phones"}} {"id":819,"name":"Lava Z70","brand":"Lava","model":"Z70","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":55.83,"price_usd":66.05} {"index":{"_index":"mobile_phones"}} {"id":820,"name":"Comio C2","brand":"Comio","model":"C2","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":821,"name":"LG K7i","brand":"LG","model":"K7i","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.7,"price_usd":54.06} {"index":{"_index":"mobile_phones"}} {"id":822,"name":"Ziox Astra Curve 4G","brand":"Ziox","model":"Astra Curve 4G","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":823,"name":"Panasonic Eluga I4","brand":"Panasonic","model":"Eluga I4","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":824,"name":"10.or G","brand":"10.or","model":"G","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":825,"name":"Karbonn K9 Smart Grand","brand":"Karbonn","model":"K9 Smart Grand","battery_capacity_mAh":2300,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":36.91,"price_usd":43.66} {"index":{"_index":"mobile_phones"}} {"id":826,"name":"Intex Aqua Lions 2","brand":"Intex","model":"Aqua Lions 2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":240,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":41.14,"price_usd":48.67} {"index":{"_index":"mobile_phones"}} {"id":827,"name":"Itel S41","brand":"Itel","model":"S41","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.22,"price_usd":67.68} {"index":{"_index":"mobile_phones"}} {"id":828,"name":"Intex Aqua S1","brand":"Intex","model":"Aqua S1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":829,"name":"Intex Cloud C1","brand":"Intex","model":"Cloud C1","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.2,"price_usd":36.91} {"index":{"_index":"mobile_phones"}} {"id":830,"name":"Gionee X1s","brand":"Gionee","model":"X1s","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":60.27,"price_usd":71.3} {"index":{"_index":"mobile_phones"}} {"id":831,"name":"Micromax Bharat 4","brand":"Micromax","model":"Bharat 4","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":36.81,"price_usd":43.54} {"index":{"_index":"mobile_phones"}} {"id":832,"name":"Micromax Bharat 3","brand":"Micromax","model":"Bharat 3","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.8,"price_usd":41.16} {"index":{"_index":"mobile_phones"}} {"id":833,"name":"Panasonic Eluga Ray 700","brand":"Panasonic","model":"Eluga Ray 700","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":834,"name":"Panasonic Eluga Ray 500","brand":"Panasonic","model":"Eluga Ray 500","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.31,"price_usd":73.7} {"index":{"_index":"mobile_phones"}} {"id":835,"name":"Yu Yureka 2","brand":"Yu","model":"reka 2","battery_capacity_mAh":3930,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.06,"price_usd":175.14} {"index":{"_index":"mobile_phones"}} {"id":836,"name":"Intex Aqua 5.5 VR+","brand":"Intex","model":"Aqua 5.5 VR+","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":837,"name":"InFocus Snap 4","brand":"InFocus","model":"Snap 4","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":65.52,"price_usd":77.51} {"index":{"_index":"mobile_phones"}} {"id":838,"name":"10.or E","brand":"10.or","model":"E","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":839,"name":"Lefalsevo K8","brand":"Lefalsevo","model":"K8","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.46,"price_usd":88.08} {"index":{"_index":"mobile_phones"}} {"id":840,"name":"Panasonic P9","brand":"Panasonic","model":"P9","battery_capacity_mAh":2210,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":69.85,"price_usd":82.62} {"index":{"_index":"mobile_phones"}} {"id":841,"name":"Oppo A71","brand":"Oppo","model":"A71","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.79,"price_usd":106.22} {"index":{"_index":"mobile_phones"}} {"id":842,"name":"iVoomi Me 3s","brand":"iVoomi","model":"Me 3s","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.35,"price_usd":61.93} {"index":{"_index":"mobile_phones"}} {"id":843,"name":"iVoomi Me 3","brand":"iVoomi","model":"Me 3","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.08,"price_usd":47.42} {"index":{"_index":"mobile_phones"}} {"id":844,"name":"Alcatel A7","brand":"Alcatel","model":"A7","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":845,"name":"Cat S31","brand":"Cat","model":"S31","battery_capacity_mAh":4000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":296.03,"price_usd":350.18} {"index":{"_index":"mobile_phones"}} {"id":846,"name":"Cat S41","brand":"Cat","model":"S41","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":475.83,"price_usd":562.87} {"index":{"_index":"mobile_phones"}} {"id":847,"name":"Sony Xperia XA1 Plus","brand":"Sony","model":"Xperia XA1 Plus","battery_capacity_mAh":3430,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.12,"price_usd":200.05} {"index":{"_index":"mobile_phones"}} {"id":848,"name":"Intex Aqua falsete 5.5","brand":"Intex","model":"Aqua falsete 5.5","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.43,"price_usd":54.92} {"index":{"_index":"mobile_phones"}} {"id":849,"name":"Jivi Grand 3000","brand":"Jivi","model":"Grand 3000","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":68.21,"price_usd":80.68} {"index":{"_index":"mobile_phones"}} {"id":850,"name":"Jivi Prime 390","brand":"Jivi","model":"Prime 390","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":851,"name":"Jivi Prime 300","brand":"Jivi","model":"Prime 300","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":852,"name":"Jivi Energy E12","brand":"Jivi","model":"Energy E12","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":853,"name":"Jivi Energy E3","brand":"Jivi","model":"Energy E3","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":854,"name":"Intex Aqua Style III","brand":"Intex","model":"Aqua Style III","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":855,"name":"Vivo Y69","brand":"Vivo","model":"Y69","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":100.48,"price_usd":118.85} {"index":{"_index":"mobile_phones"}} {"id":856,"name":"iVoomi Me 2","brand":"iVoomi","model":"Me 2","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":30.67,"price_usd":36.28} {"index":{"_index":"mobile_phones"}} {"id":857,"name":"Swipe Neo Power","brand":"Swipe","model":"Neo Power","battery_capacity_mAh":2500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":858,"name":"Meizu M6 falsete","brand":"Meizu","model":"M6 falsete","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.07,"price_usd":175.15} {"index":{"_index":"mobile_phones"}} {"id":859,"name":"Nuu Mobile Q500","brand":"Nuu Mobile","model":"Q500","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":860,"name":"Nuu Mobile Q626","brand":"Nuu Mobile","model":"Q626","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":861,"name":"Alcatel U5 HD","brand":"Alcatel","model":"U5 HD","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":862,"name":"M-tech TEZ4G","brand":"M-tech","model":"TEZ4G","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.78,"price_usd":49.42} {"index":{"_index":"mobile_phones"}} {"id":863,"name":"Gionee X1","brand":"Gionee","model":"X1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.65,"price_usd":62.28} {"index":{"_index":"mobile_phones"}} {"id":864,"name":"Comio C1","brand":"Comio","model":"C1","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":865,"name":"Comio S1","brand":"Comio","model":"S1","battery_capacity_mAh":2700,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":866,"name":"Comio P1","brand":"Comio","model":"P1","battery_capacity_mAh":5000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":91.66,"price_usd":108.42} {"index":{"_index":"mobile_phones"}} {"id":867,"name":"Micromax Evok Dual falsete","brand":"Micromax","model":"Evok Dual falsete","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":868,"name":"Asus ZenFone 4","brand":"Asus","model":"ZenFone 4","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":869,"name":"Swipe Elite 4G","brand":"Swipe","model":"Elite 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":870,"name":"Panasonic Eluga I2 Activ","brand":"Panasonic","model":"Eluga I2 Activ","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":871,"name":"Asus ZenFone 4 Selfie DC (ZD553KL)","brand":"Asus","model":"ZenFone 4 Selfie DC (ZD553KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":872,"name":"Itel PowerPro P41","brand":"Itel","model":"PowerPro P41","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":41.04,"price_usd":48.54} {"index":{"_index":"mobile_phones"}} {"id":873,"name":"Panasonic Eluga A3","brand":"Panasonic","model":"Eluga A3","battery_capacity_mAh":4000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":62.77,"price_usd":74.25} {"index":{"_index":"mobile_phones"}} {"id":874,"name":"Gionee A1 Lite","brand":"Gionee","model":"A1 Lite","battery_capacity_mAh":4000,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":20,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":875,"name":"Karbonn A41 Power","brand":"Karbonn","model":"A41 Power","battery_capacity_mAh":2300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":29.13,"price_usd":34.46} {"index":{"_index":"mobile_phones"}} {"id":876,"name":"Swipe Konnect Power","brand":"Swipe","model":"Konnect Power","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":877,"name":"Kult Beyond","brand":"Kult","model":"Beyond","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":878,"name":"Coolpad falsete 5 Lite C","brand":"Coolpad","model":"falsete 5 Lite C","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":48.76,"price_usd":57.68} {"index":{"_index":"mobile_phones"}} {"id":879,"name":"Karbonn Aura falsete Play","brand":"Karbonn","model":"Aura falsete Play","battery_capacity_mAh":3300,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.39,"price_usd":73.8} {"index":{"_index":"mobile_phones"}} {"id":880,"name":"Infinix Hot 4 Pro","brand":"Infinix","model":"Hot 4 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":881,"name":"Infinix falsete 4","brand":"Infinix","model":"falsete 4","battery_capacity_mAh":4300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":882,"name":"Micromax Selfie 2","brand":"Micromax","model":"Selfie 2","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":51.77,"price_usd":61.24} {"index":{"_index":"mobile_phones"}} {"id":883,"name":"Meizu Pro 7","brand":"Meizu","model":"Pro 7","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":296.14,"price_usd":350.31} {"index":{"_index":"mobile_phones"}} {"id":884,"name":"Yu Yunique 2","brand":"Yu","model":"nique 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":885,"name":"Lyf C459","brand":"Lyf","model":"C459","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":37.97,"price_usd":44.91} {"index":{"_index":"mobile_phones"}} {"id":886,"name":"Samsung Galaxy J7 Nxt","brand":"Samsung","model":"Galaxy J7 Nxt","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":887,"name":"Intex Aqua Lions 3","brand":"Intex","model":"Aqua Lions 3","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":57.54,"price_usd":68.06} {"index":{"_index":"mobile_phones"}} {"id":888,"name":"iVoomi Me5","brand":"iVoomi","model":"Me5","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.8,"price_usd":41.16} {"index":{"_index":"mobile_phones"}} {"id":889,"name":"iVoomi Me4","brand":"iVoomi","model":"Me4","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":36.49,"price_usd":43.16} {"index":{"_index":"mobile_phones"}} {"id":890,"name":"Intex Aqua Zenith","brand":"Intex","model":"Aqua Zenith","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":891,"name":"Micromax Canvas 1","brand":"Micromax","model":"Canvas 1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.03,"price_usd":46.17} {"index":{"_index":"mobile_phones"}} {"id":892,"name":"Intex Aqua Selfie","brand":"Intex","model":"Aqua Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":51.6,"price_usd":61.04} {"index":{"_index":"mobile_phones"}} {"id":893,"name":"Asus ZenFone 4 Selfie","brand":"Asus","model":"ZenFone 4 Selfie","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":12,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":68.21,"price_usd":80.68} {"index":{"_index":"mobile_phones"}} {"id":894,"name":"Xolo Era 1X Pro","brand":"Xolo","model":"Era 1X Pro","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.85,"price_usd":86.18} {"index":{"_index":"mobile_phones"}} {"id":895,"name":"LG Q6+","brand":"LG","model":"Q6+","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":2160,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":896,"name":"Intex Aqua S3","brand":"Intex","model":"Aqua S3","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.09,"price_usd":49.79} {"index":{"_index":"mobile_phones"}} {"id":897,"name":"Nubia M2 Play","brand":"Nubia","model":"M2 Play","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":898,"name":"Samsung Galaxy J7 Max","brand":"Samsung","model":"Galaxy J7 Max","battery_capacity_mAh":3300,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.83,"price_usd":138.2} {"index":{"_index":"mobile_phones"}} {"id":899,"name":"Samsung Galaxy J7 Pro","brand":"Samsung","model":"Galaxy J7 Pro","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":178.74,"price_usd":211.44} {"index":{"_index":"mobile_phones"}} {"id":900,"name":"Lyf Water 7S","brand":"Lyf","model":"Water 7S","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":901,"name":"Panasonic Eluga I3 Mega","brand":"Panasonic","model":"Eluga I3 Mega","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":61.67,"price_usd":72.95} {"index":{"_index":"mobile_phones"}} {"id":902,"name":"Ziox Astra VIVA 4G","brand":"Ziox","model":"Astra VIVA 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":903,"name":"Lava A77","brand":"Lava","model":"A77","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":904,"name":"Karbonn Aura Power 4G Plus","brand":"Karbonn","model":"Aura Power 4G Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":905,"name":"Itel Wish A21","brand":"Itel","model":"Wish A21","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.82,"price_usd":48.29} {"index":{"_index":"mobile_phones"}} {"id":906,"name":"Itel Wish A41+","brand":"Itel","model":"Wish A41+","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.81,"price_usd":81.4} {"index":{"_index":"mobile_phones"}} {"id":907,"name":"Motorola Moto C Plus","brand":"Motorola","model":"Moto C Plus","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.47,"price_usd":77.44} {"index":{"_index":"mobile_phones"}} {"id":908,"name":"Samsung Z4","brand":"Samsung","model":"Z4","battery_capacity_mAh":1050,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Tizen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":909,"name":"Panasonic P85","brand":"Panasonic","model":"P85","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":910,"name":"Panasonic Eluga Ray","brand":"Panasonic","model":"Eluga Ray","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":911,"name":"Karbonn Aura 4G","brand":"Karbonn","model":"Aura 4G","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":66.91,"price_usd":79.14} {"index":{"_index":"mobile_phones"}} {"id":912,"name":"Intex Aqua Crystal Plus","brand":"Intex","model":"Aqua Crystal Plus","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":79.22,"price_usd":93.71} {"index":{"_index":"mobile_phones"}} {"id":913,"name":"Asus ZenFone Go 5.5 (ZB552KL)","brand":"Asus","model":"ZenFone Go 5.5 (ZB552KL)","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":64.62,"price_usd":76.44} {"index":{"_index":"mobile_phones"}} {"id":914,"name":"Ziox Astra Colors 4G","brand":"Ziox","model":"Astra Colors 4G","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.53,"price_usd":55.04} {"index":{"_index":"mobile_phones"}} {"id":915,"name":"Zen Admire Joy","brand":"Zen","model":"Admire Joy","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":768,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":916,"name":"Intex Aqua A4","brand":"Intex","model":"Aqua A4","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":48.92,"price_usd":57.86} {"index":{"_index":"mobile_phones"}} {"id":917,"name":"Zopo Color M5","brand":"Zopo","model":"Color M5","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":35.84,"price_usd":42.4} {"index":{"_index":"mobile_phones"}} {"id":918,"name":"Videocon Krypton 22","brand":"Videocon","model":"Krypton 22","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":919,"name":"Zen Admire Metal","brand":"Zen","model":"Admire Metal","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":920,"name":"Motorola Moto E4 Plus","brand":"Motorola","model":"Moto E4 Plus","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":921,"name":"Ziox Astra Force 4G","brand":"Ziox","model":"Astra Force 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":922,"name":"Zopo Color M4","brand":"Zopo","model":"Color M4","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"false","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":0,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":51.7,"price_usd":61.15} {"index":{"_index":"mobile_phones"}} {"id":923,"name":"Hofalser Bee 2","brand":"Hofalser","model":"Bee 2","battery_capacity_mAh":2100,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":924,"name":"Tecfalse i5 Pro","brand":"Tecfalse","model":"i5 Pro","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.8,"price_usd":84.94} {"index":{"_index":"mobile_phones"}} {"id":925,"name":"Tecfalse i3 Pro","brand":"Tecfalse","model":"i3 Pro","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.69,"price_usd":125.02} {"index":{"_index":"mobile_phones"}} {"id":926,"name":"Tecfalse i5","brand":"Tecfalse","model":"i5","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":70.11,"price_usd":82.94} {"index":{"_index":"mobile_phones"}} {"id":927,"name":"Tecfalse i3","brand":"Tecfalse","model":"i3","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.54,"price_usd":89.35} {"index":{"_index":"mobile_phones"}} {"id":928,"name":"Videocon Delite 11+","brand":"Videocon","model":"Delite 11+","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":929,"name":"Motorola Moto C","brand":"Motorola","model":"Moto C","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":930,"name":"Motorola Moto E4","brand":"Motorola","model":"Moto E4","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":931,"name":"Micromax Evok falsete","brand":"Micromax","model":"Evok falsete","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":52.46,"price_usd":62.05} {"index":{"_index":"mobile_phones"}} {"id":932,"name":"Zopo Color X 5.5","brand":"Zopo","model":"Color X 5.5","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":42.09,"price_usd":49.79} {"index":{"_index":"mobile_phones"}} {"id":933,"name":"Lephone W7","brand":"Lephone","model":"W7","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":43.42,"price_usd":51.36} {"index":{"_index":"mobile_phones"}} {"id":934,"name":"Ziox QUIQ Flash 4G","brand":"Ziox","model":"QUIQ Flash 4G","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":935,"name":"Intex ELYT-e1","brand":"Intex","model":"ELYT-e1","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":64.52,"price_usd":76.32} {"index":{"_index":"mobile_phones"}} {"id":936,"name":"Sansui Horizon 1","brand":"Sansui","model":"Horizon 1","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":937,"name":"Micromax Bharat 2","brand":"Micromax","model":"Bharat 2","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":24.95,"price_usd":29.51} {"index":{"_index":"mobile_phones"}} {"id":938,"name":"Swipe Konnect Neo 4G","brand":"Swipe","model":"Konnect Neo 4G","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":939,"name":"Itel Wish A41","brand":"Itel","model":"Wish A41","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"false","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.61,"price_usd":61.05} {"index":{"_index":"mobile_phones"}} {"id":940,"name":"Panasonic Eluga Ray X","brand":"Panasonic","model":"Eluga Ray X","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.72,"price_usd":74.19} {"index":{"_index":"mobile_phones"}} {"id":941,"name":"Panasonic Eluga Ray Max","brand":"Panasonic","model":"Eluga Ray Max","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":121.62,"price_usd":143.86} {"index":{"_index":"mobile_phones"}} {"id":942,"name":"Intex Aqua 4G Mini","brand":"Intex","model":"Aqua 4G Mini","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":41.62,"price_usd":49.23} {"index":{"_index":"mobile_phones"}} {"id":943,"name":"Micromax Spark Vdeo","brand":"Micromax","model":"Spark Vdeo","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":944,"name":"Zen Admire Swadesh","brand":"Zen","model":"Admire Swadesh","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":945,"name":"Nubia N2","brand":"Nubia","model":"N2","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.71,"price_usd":113.21} {"index":{"_index":"mobile_phones"}} {"id":946,"name":"Nubia M2 Lite","brand":"Nubia","model":"M2 Lite","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.73,"price_usd":89.58} {"index":{"_index":"mobile_phones"}} {"id":947,"name":"Karbonn Aura Sleek 4G","brand":"Karbonn","model":"Aura Sleek 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":59.95,"price_usd":70.91} {"index":{"_index":"mobile_phones"}} {"id":948,"name":"Intex Aqua Trend Lite","brand":"Intex","model":"Aqua Trend Lite","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":949,"name":"Lefalsevo Vibe B","brand":"Lefalsevo","model":"Vibe B","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":68.22,"price_usd":80.7} {"index":{"_index":"mobile_phones"}} {"id":950,"name":"LeEco Le Pro 3 Elite","brand":"LeEco","model":"Le Pro 3 Elite","battery_capacity_mAh":4070,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":951,"name":"iVoomi iV505","brand":"iVoomi","model":"iV505","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.25,"price_usd":48.79} {"index":{"_index":"mobile_phones"}} {"id":952,"name":"Swipe Elite Sense","brand":"Swipe","model":"Elite Sense","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":953,"name":"Intex Aqua Strong 5.1+","brand":"Intex","model":"Aqua Strong 5.1+","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":39.03,"price_usd":46.17} {"index":{"_index":"mobile_phones"}} {"id":954,"name":"Nubia N1 lite","brand":"Nubia","model":"N1 lite","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":955,"name":"ZTE Blade V8 Mini","brand":"ZTE","model":"Blade V8 Mini","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":55.0,"price_usd":65.06} {"index":{"_index":"mobile_phones"}} {"id":956,"name":"Alcatel A5 LED","brand":"Alcatel","model":"A5 LED","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.92,"price_usd":187.99} {"index":{"_index":"mobile_phones"}} {"id":957,"name":"Sony Xperia XA1","brand":"Sony","model":"Xperia XA1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":958,"name":"Swipe Elite 3","brand":"Swipe","model":"Elite 3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":959,"name":"falsekia 5","brand":"falsekia","model":"5","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":960,"name":"Swipe Konnect Star","brand":"Swipe","model":"Konnect Star","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":28.45,"price_usd":33.65} {"index":{"_index":"mobile_phones"}} {"id":961,"name":"Asus ZenFone Go 5.0 LTE (ZB500KL)","brand":"Asus","model":"ZenFone Go 5.0 LTE (ZB500KL)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":962,"name":"Intex Aqua Lions 4G","brand":"Intex","model":"Aqua Lions 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":46.54,"price_usd":55.05} {"index":{"_index":"mobile_phones"}} {"id":963,"name":"Intex Aqua 4.0","brand":"Intex","model":"Aqua 4.0","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":360,"resolution_y":640,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":43.31,"price_usd":51.23} {"index":{"_index":"mobile_phones"}} {"id":964,"name":"Intex Aqua Amaze+","brand":"Intex","model":"Aqua Amaze+","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":965,"name":"Swipe Elite Power","brand":"Swipe","model":"Elite Power","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":966,"name":"Lava X41+","brand":"Lava","model":"X41+","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":967,"name":"Intex Cloud Style 4G","brand":"Intex","model":"Cloud Style 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":968,"name":"Micromax Vdeo 3","brand":"Micromax","model":"Vdeo 3","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":969,"name":"Micromax Vdeo 4","brand":"Micromax","model":"Vdeo 4","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":970,"name":"Samsung Galaxy J2 Ace","brand":"Samsung","model":"Galaxy J2 Ace","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":971,"name":"Swipe Konnect Grand","brand":"Swipe","model":"Konnect Grand","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":972,"name":"Xolo Era 2X","brand":"Xolo","model":"Era 2X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":64.51,"price_usd":76.3} {"index":{"_index":"mobile_phones"}} {"id":973,"name":"Lyf Water 3","brand":"Lyf","model":"Water 3","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"false","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":974,"name":"Lyf F1S","brand":"Lyf","model":"F1S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":80.37,"price_usd":95.07} {"index":{"_index":"mobile_phones"}} {"id":975,"name":"Karbonn K9 Viraat 4G","brand":"Karbonn","model":"K9 Viraat 4G","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.4,"price_usd":73.81} {"index":{"_index":"mobile_phones"}} {"id":976,"name":"Lyf Wind 7S","brand":"Lyf","model":"Wind 7S","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":64.51,"price_usd":76.3} {"index":{"_index":"mobile_phones"}} {"id":977,"name":"LG Stylus 3","brand":"LG","model":"Stylus 3","battery_capacity_mAh":3200,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":978,"name":"LG K8 (2017)","brand":"LG","model":"K8 (2017)","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":979,"name":"Zuk Edge","brand":"Zuk","model":"Edge","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":308.03,"price_usd":364.37} {"index":{"_index":"mobile_phones"}} {"id":980,"name":"Zen Cinemax Click","brand":"Zen","model":"Cinemax Click","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":981,"name":"Lava A76+","brand":"Lava","model":"A76+","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":982,"name":"Swipe Elite Max","brand":"Swipe","model":"Elite Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":137.48,"price_usd":162.63} {"index":{"_index":"mobile_phones"}} {"id":983,"name":"Panasonic P88","brand":"Panasonic","model":"P88","battery_capacity_mAh":2600,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":984,"name":"Swipe Elite Star","brand":"Swipe","model":"Elite Star","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":985,"name":"Gionee P7","brand":"Gionee","model":"P7","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":986,"name":"Micromax Vdeo 2","brand":"Micromax","model":"Vdeo 2","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.35,"price_usd":61.93} {"index":{"_index":"mobile_phones"}} {"id":987,"name":"Micromax Vdeo 1","brand":"Micromax","model":"Vdeo 1","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":988,"name":"Meizu M5 falsete","brand":"Meizu","model":"M5 falsete","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":58.06,"price_usd":68.69} {"index":{"_index":"mobile_phones"}} {"id":989,"name":"Lyf Water 9","brand":"Lyf","model":"Water 9","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.7,"price_usd":69.44} {"index":{"_index":"mobile_phones"}} {"id":990,"name":"Lava X50+","brand":"Lava","model":"X50+","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":991,"name":"Meizu Pro 6 Plus","brand":"Meizu","model":"Pro 6 Plus","battery_capacity_mAh":3400,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":291.91,"price_usd":345.3} {"index":{"_index":"mobile_phones"}} {"id":992,"name":"Panasonic Eluga Mark 2","brand":"Panasonic","model":"Eluga Mark 2","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":993,"name":"HTC 10 evo","brand":"HTC","model":"10 evo","battery_capacity_mAh":3200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":117.4,"price_usd":138.87} {"index":{"_index":"mobile_phones"}} {"id":994,"name":"Lyf Wind 7i","brand":"Lyf","model":"Wind 7i","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":53.93,"price_usd":63.79} {"index":{"_index":"mobile_phones"}} {"id":995,"name":"Panasonic P71","brand":"Panasonic","model":"P71","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":74.01,"price_usd":87.55} {"index":{"_index":"mobile_phones"}} {"id":996,"name":"Zopo Color F2","brand":"Zopo","model":"Color F2","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.63,"price_usd":57.53} {"index":{"_index":"mobile_phones"}} {"id":997,"name":"Motorola Moto M","brand":"Motorola","model":"Moto M","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":998,"name":"Lyf F8","brand":"Lyf","model":"F8","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":999,"name":"Huawei Mate 9","brand":"Huawei","model":"Mate 9","battery_capacity_mAh":4000,"screen_size_inches":5.9,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":20,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":570.95,"price_usd":675.38} {"index":{"_index":"mobile_phones"}} {"id":1000,"name":"Intex Aqua Power M","brand":"Intex","model":"Aqua Power M","battery_capacity_mAh":4350,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":0,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1001,"name":"Zen Cinemax 2+","brand":"Zen","model":"Cinemax 2+","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":39.55,"price_usd":46.78} {"index":{"_index":"mobile_phones"}} {"id":1002,"name":"Swipe Elite 2 Plus","brand":"Swipe","model":"Elite 2 Plus","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1003,"name":"Samsung Galaxy On Nxt","brand":"Samsung","model":"Galaxy On Nxt","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":118.46,"price_usd":140.12} {"index":{"_index":"mobile_phones"}} {"id":1004,"name":"Xolo Era 2","brand":"Xolo","model":"Era 2","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":1005,"name":"Zopo Color F5","brand":"Zopo","model":"Color F5","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.36,"price_usd":53.66} {"index":{"_index":"mobile_phones"}} {"id":1006,"name":"Intex Cloud S9","brand":"Intex","model":"Cloud S9","battery_capacity_mAh":3650,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.62,"price_usd":84.72} {"index":{"_index":"mobile_phones"}} {"id":1007,"name":"Intex Aqua Q8","brand":"Intex","model":"Aqua Q8","battery_capacity_mAh":1650,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.55,"price_usd":33.77} {"index":{"_index":"mobile_phones"}} {"id":1008,"name":"Intex Aqua Craze II","brand":"Intex","model":"Aqua Craze II","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.42,"price_usd":67.92} {"index":{"_index":"mobile_phones"}} {"id":1009,"name":"Intex Aqua 5.5 VR","brand":"Intex","model":"Aqua 5.5 VR","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":61.86,"price_usd":73.18} {"index":{"_index":"mobile_phones"}} {"id":1010,"name":"Intex Aqua S2","brand":"Intex","model":"Aqua S2","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1011,"name":"Hofalser 8 Smart","brand":"Hofalser","model":"8 Smart","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"true","price_gbp":176.62,"price_usd":208.92} {"index":{"_index":"mobile_phones"}} {"id":1012,"name":"Hofalser Holly 3","brand":"Hofalser","model":"Holly 3","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1013,"name":"BlackBerry DTEK60","brand":"BlackBerry","model":"DTEK60","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":1014,"name":"Xiaomi Mi Max Prime","brand":"Xiaomi","model":"Mi Max Prime","battery_capacity_mAh":4850,"screen_size_inches":6.44,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":128,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.52,"price_usd":250.21} {"index":{"_index":"mobile_phones"}} {"id":1015,"name":"Lyf Wind 4S","brand":"Lyf","model":"Wind 4S","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1820,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.73,"price_usd":81.3} {"index":{"_index":"mobile_phones"}} {"id":1016,"name":"Lyf Flame 7s","brand":"Lyf","model":"Flame 7s","battery_capacity_mAh":1800,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":37.85,"price_usd":44.78} {"index":{"_index":"mobile_phones"}} {"id":1017,"name":"Zen Cinemax Force","brand":"Zen","model":"Cinemax Force","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1018,"name":"Intex Aqua Strong 5.2","brand":"Intex","model":"Aqua Strong 5.2","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":62.92,"price_usd":74.43} {"index":{"_index":"mobile_phones"}} {"id":1019,"name":"Vivo Y55L","brand":"Vivo","model":"Y55L","battery_capacity_mAh":2730,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1280,"resolution_y":720,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"false","price_gbp":110.52,"price_usd":130.74} {"index":{"_index":"mobile_phones"}} {"id":1020,"name":"Google Pixel","brand":"Google","model":"Pixel","battery_capacity_mAh":2770,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":12.3,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":235.84,"price_usd":278.98} {"index":{"_index":"mobile_phones"}} {"id":1021,"name":"Karbonn Titanium 3-D Plex","brand":"Karbonn","model":"Titanium 3-D Plex","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1022,"name":"Intex Aqua Pro 4G","brand":"Intex","model":"Aqua Pro 4G","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"false","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":47.93,"price_usd":56.7} {"index":{"_index":"mobile_phones"}} {"id":1023,"name":"Gionee P7 Max","brand":"Gionee","model":"P7 Max","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1024,"name":"Coolpad falsete 5","brand":"Coolpad","model":"falsete 5","battery_capacity_mAh":4010,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":127.45,"price_usd":150.76} {"index":{"_index":"mobile_phones"}} {"id":1025,"name":"Lava A97","brand":"Lava","model":"A97","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.17,"price_usd":68.81} {"index":{"_index":"mobile_phones"}} {"id":1026,"name":"Samsung Galaxy On8","brand":"Samsung","model":"Galaxy On8","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1027,"name":"Micromax Canvas 5 Lite","brand":"Micromax","model":"Canvas 5 Lite","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1028,"name":"Panasonic P77","brand":"Panasonic","model":"P77","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1029,"name":"Lava A56","brand":"Lava","model":"A56","battery_capacity_mAh":1850,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"false","price_gbp":24.32,"price_usd":28.76} {"index":{"_index":"mobile_phones"}} {"id":1030,"name":"Lava X28","brand":"Lava","model":"X28","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":67.69,"price_usd":80.07} {"index":{"_index":"mobile_phones"}} {"id":1031,"name":"Micromax Bolt Q326+","brand":"Micromax","model":"Bolt Q326+","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":33.79,"price_usd":39.97} {"index":{"_index":"mobile_phones"}} {"id":1032,"name":"HTC Desire 10 Lifestyle","brand":"HTC","model":"Desire 10 Lifestyle","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":169.22,"price_usd":200.18} {"index":{"_index":"mobile_phones"}} {"id":1033,"name":"Samsung Galaxy J5 Prime","brand":"Samsung","model":"Galaxy J5 Prime","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":132.19,"price_usd":156.37} {"index":{"_index":"mobile_phones"}} {"id":1034,"name":"Videocon Cube 3","brand":"Videocon","model":"Cube 3","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":87.26,"price_usd":103.22} {"index":{"_index":"mobile_phones"}} {"id":1035,"name":"Zopo Color F1","brand":"Zopo","model":"Color F1","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.83,"price_usd":54.21} {"index":{"_index":"mobile_phones"}} {"id":1036,"name":"Lefalsevo A7700","brand":"Lefalsevo","model":"A7700","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1037,"name":"Lefalsevo A6600 Plus","brand":"Lefalsevo","model":"A6600 Plus","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":77.21,"price_usd":91.33} {"index":{"_index":"mobile_phones"}} {"id":1038,"name":"Lefalsevo A6600","brand":"Lefalsevo","model":"A6600","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.79,"price_usd":93.21} {"index":{"_index":"mobile_phones"}} {"id":1039,"name":"Zen Admire Star","brand":"Zen","model":"Admire Star","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1040,"name":"Samsung Galaxy Folder 2","brand":"Samsung","model":"Galaxy Folder 2","battery_capacity_mAh":1950,"screen_size_inches":3.8,"touchscreen":"false","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"false","4G":"true","price_gbp":179.69,"price_usd":212.56} {"index":{"_index":"mobile_phones"}} {"id":1041,"name":"Xolo Era 1X","brand":"Xolo","model":"Era 1X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":54.46,"price_usd":64.42} {"index":{"_index":"mobile_phones"}} {"id":1042,"name":"Intex Aqua Costa","brand":"Intex","model":"Aqua Costa","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1043,"name":"Intex Aqua Q7N Pro","brand":"Intex","model":"Aqua Q7N Pro","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":28.56,"price_usd":33.78} {"index":{"_index":"mobile_phones"}} {"id":1044,"name":"Lyf Water 10","brand":"Lyf","model":"Water 10","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.94,"price_usd":50.79} {"index":{"_index":"mobile_phones"}} {"id":1045,"name":"Vivo Y21L","brand":"Vivo","model":"Y21L","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":75.09,"price_usd":88.83} {"index":{"_index":"mobile_phones"}} {"id":1046,"name":"Intex Cloud Tread","brand":"Intex","model":"Cloud Tread","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":6,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1047,"name":"InFocus Bingo 50+","brand":"InFocus","model":"Bingo 50+","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"false","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1048,"name":"Samsung Z2","brand":"Samsung","model":"Z2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Tizen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1049,"name":"Yu Yureka S","brand":"Yu","model":"reka S","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":1050,"name":"Yu Yunique Plus","brand":"Yu","model":"nique Plus","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1051,"name":"Celkon Millennia Ufeel","brand":"Celkon","model":"Millennia Ufeel","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1052,"name":"Intex Aqua Eco 4G","brand":"Intex","model":"Aqua Eco 4G","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"false","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1053,"name":"Intex Aqua Viturbo","brand":"Intex","model":"Aqua Viturbo","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"false","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"false","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1054,"name":"Lyf Wind 7","brand":"Lyf","model":"Wind 7","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":1055,"name":"Lyf Flame 7","brand":"Lyf","model":"Flame 7","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1056,"name":"Intex Aqua Music","brand":"Intex","model":"Aqua Music","battery_capacity_mAh":3400,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1057,"name":"Asus ZenFone Go (ZB450KL)","brand":"Asus","model":"ZenFone Go (ZB450KL)","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1058,"name":"Lyf Flame 8","brand":"Lyf","model":"Flame 8","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":26.92,"price_usd":31.84} {"index":{"_index":"mobile_phones"}} {"id":1059,"name":"Lyf Wind 3","brand":"Lyf","model":"Wind 3","battery_capacity_mAh":2920,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1060,"name":"Micromax Unite 4 Plus","brand":"Micromax","model":"Unite 4 Plus","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.59,"price_usd":100.06} {"index":{"_index":"mobile_phones"}} {"id":1061,"name":"Swipe Konnect Plus","brand":"Swipe","model":"Konnect Plus","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1062,"name":"Lava X38","brand":"Lava","model":"X38","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1063,"name":"Lyf Wind 2","brand":"Lyf","model":"Wind 2","battery_capacity_mAh":2850,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1064,"name":"Intex Aqua Strong 5.1","brand":"Intex","model":"Aqua Strong 5.1","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"false","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.65,"price_usd":57.55} {"index":{"_index":"mobile_phones"}} {"id":1065,"name":"Lefalsevo Vibe K5 falsete","brand":"Lefalsevo","model":"Vibe K5 falsete","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.51,"price_usd":99.96} {"index":{"_index":"mobile_phones"}} {"id":1066,"name":"Panasonic Eluga Arc 2","brand":"Panasonic","model":"Eluga Arc 2","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":59.22,"price_usd":70.05} {"index":{"_index":"mobile_phones"}} {"id":1067,"name":"Panasonic T44 Lite","brand":"Panasonic","model":"T44 Lite","battery_capacity_mAh":2400,"screen_size_inches":4,"touchscreen":"true","resolution_x":800,"resolution_y":480,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.16,"price_usd":27.4} {"index":{"_index":"mobile_phones"}} {"id":1068,"name":"Intex Cloud String v2.0","brand":"Intex","model":"Cloud String v2.0","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1069,"name":"Lyf Water 8","brand":"Lyf","model":"Water 8","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":83.55,"price_usd":98.84} {"index":{"_index":"mobile_phones"}} {"id":1070,"name":"Karbonn Fashion Eye","brand":"Karbonn","model":"Fashion Eye","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"false","resolution_x":1280,"resolution_y":720,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":34.68,"price_usd":41.02} {"index":{"_index":"mobile_phones"}} {"id":1071,"name":"Samsung Galaxy J2 Pro","brand":"Samsung","model":"Galaxy J2 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":110.84,"price_usd":131.11} {"index":{"_index":"mobile_phones"}} {"id":1072,"name":"InFocus M535+","brand":"InFocus","model":"M535+","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":1073,"name":"Intex Aqua Ring","brand":"Intex","model":"Aqua Ring","battery_capacity_mAh":2450,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.85,"price_usd":62.52} {"index":{"_index":"mobile_phones"}} {"id":1074,"name":"Lava A32","brand":"Lava","model":"A32","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1075,"name":"Lava A68","brand":"Lava","model":"A68","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1076,"name":"Intex Aqua Q7N","brand":"Intex","model":"Aqua Q7N","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.31,"price_usd":31.13} {"index":{"_index":"mobile_phones"}} {"id":1077,"name":"Intex Aqua Pride","brand":"Intex","model":"Aqua Pride","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":41.11,"price_usd":48.63} {"index":{"_index":"mobile_phones"}} {"id":1078,"name":"Lava X17","brand":"Lava","model":"X17","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":1079,"name":"Lyf Water 4","brand":"Lyf","model":"Water 4","battery_capacity_mAh":2920,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":1,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1080,"name":"Asus ZenFone 3 Max (ZC520TL)","brand":"Asus","model":"ZenFone 3 Max (ZC520TL)","battery_capacity_mAh":4100,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.96,"price_usd":175.03} {"index":{"_index":"mobile_phones"}} {"id":1081,"name":"Karbonn Aura Power","brand":"Karbonn","model":"Aura Power","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":1082,"name":"Samsung Galaxy On7 Pro","brand":"Samsung","model":"Galaxy On7 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1083,"name":"Samsung Galaxy On5 Pro","brand":"Samsung","model":"Galaxy On5 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.54,"price_usd":81.07} {"index":{"_index":"mobile_phones"}} {"id":1084,"name":"Samsung Galaxy J2 (2016)","brand":"Samsung","model":"Galaxy J2 (2016)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1085,"name":"Intex Aqua Power 4G","brand":"Intex","model":"Aqua Power 4G","battery_capacity_mAh":3800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1086,"name":"Nubia N1","brand":"Nubia","model":"N1","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.91,"price_usd":150.12} {"index":{"_index":"mobile_phones"}} {"id":1087,"name":"Panasonic Eluga falsete","brand":"Panasonic","model":"Eluga falsete","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":116.23,"price_usd":137.5} {"index":{"_index":"mobile_phones"}} {"id":1088,"name":"TCL 560","brand":"TCL","model":"560","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.77,"price_usd":62.42} {"index":{"_index":"mobile_phones"}} {"id":1089,"name":"Karbonn A91 Storm","brand":"Karbonn","model":"A91 Storm","battery_capacity_mAh":2200,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1090,"name":"Vivo X7","brand":"Vivo","model":"X7","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":13,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1091,"name":"iBall Andi 5G Blink 4G","brand":"iBall","model":"Andi 5G Blink 4G","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.72,"price_usd":61.18} {"index":{"_index":"mobile_phones"}} {"id":1092,"name":"Nubia Z11","brand":"Nubia","model":"Z11","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":4,"ram_memory_mb":6000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":222.09,"price_usd":262.72} {"index":{"_index":"mobile_phones"}} {"id":1093,"name":"Lyf Earth 2","brand":"Lyf","model":"Earth 2","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1094,"name":"Intex Aqua Classic","brand":"Intex","model":"Aqua Classic","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":1095,"name":"Micromax Canvas Fire 5","brand":"Micromax","model":"Canvas Fire 5","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":78.15,"price_usd":92.44} {"index":{"_index":"mobile_phones"}} {"id":1096,"name":"Oppo A37","brand":"Oppo","model":"A37","battery_capacity_mAh":2630,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":91.66,"price_usd":108.42} {"index":{"_index":"mobile_phones"}} {"id":1097,"name":"Intex Aqua Sense 5.1","brand":"Intex","model":"Aqua Sense 5.1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.11,"price_usd":33.25} {"index":{"_index":"mobile_phones"}} {"id":1098,"name":"Panasonic P75","brand":"Panasonic","model":"P75","battery_capacity_mAh":5000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1099,"name":"Xiaomi Redmi 3S","brand":"Xiaomi","model":"Redmi 3S","battery_capacity_mAh":4100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.75,"price_usd":81.32} {"index":{"_index":"mobile_phones"}} {"id":1100,"name":"Intex Aqua View","brand":"Intex","model":"Aqua View","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.81,"price_usd":61.29} {"index":{"_index":"mobile_phones"}} {"id":1101,"name":"Lyf Water 7","brand":"Lyf","model":"Water 7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":5.22,"price_usd":6.18} {"index":{"_index":"mobile_phones"}} {"id":1102,"name":"Lyf Wind 1","brand":"Lyf","model":"Wind 1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.03,"price_usd":87.58} {"index":{"_index":"mobile_phones"}} {"id":1103,"name":"Panasonic T44","brand":"Panasonic","model":"T44","battery_capacity_mAh":2400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.97,"price_usd":44.91} {"index":{"_index":"mobile_phones"}} {"id":1104,"name":"Panasonic T30","brand":"Panasonic","model":"T30","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.31,"price_usd":31.13} {"index":{"_index":"mobile_phones"}} {"id":1105,"name":"Lefalsevo Phab 2","brand":"Lefalsevo","model":"Phab 2","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1106,"name":"Lefalsevo Phab 2 Pro","brand":"Lefalsevo","model":"Phab 2 Pro","battery_capacity_mAh":4050,"screen_size_inches":6.4,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":243.25,"price_usd":287.74} {"index":{"_index":"mobile_phones"}} {"id":1107,"name":"Lava X81","brand":"Lava","model":"X81","battery_capacity_mAh":2700,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1108,"name":"Lyf Wind 5","brand":"Lyf","model":"Wind 5","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":88.83,"price_usd":105.08} {"index":{"_index":"mobile_phones"}} {"id":1109,"name":"Lava X46","brand":"Lava","model":"X46","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":102.59,"price_usd":121.36} {"index":{"_index":"mobile_phones"}} {"id":1110,"name":"Intex Cloud Glory 4G","brand":"Intex","model":"Cloud Glory 4G","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":584,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1111,"name":"Samsung Galaxy J3 Pro","brand":"Samsung","model":"Galaxy J3 Pro","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":87.77,"price_usd":103.83} {"index":{"_index":"mobile_phones"}} {"id":1112,"name":"Lyf Flame 6","brand":"Lyf","model":"Flame 6","battery_capacity_mAh":1750,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1113,"name":"Swipe Elite Plus","brand":"Swipe","model":"Elite Plus","battery_capacity_mAh":3050,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1114,"name":"Lava A82","brand":"Lava","model":"A82","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1115,"name":"Intex Aqua Shine 4G","brand":"Intex","model":"Aqua Shine 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1116,"name":"LG Stylus 2 Plus","brand":"LG","model":"Stylus 2 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1117,"name":"LG X Power","brand":"LG","model":"X Power","battery_capacity_mAh":4100,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1118,"name":"Lyf Flame 4","brand":"Lyf","model":"Flame 4","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":1119,"name":"Zen Admire SXY","brand":"Zen","model":"Admire SXY","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":27.91,"price_usd":33.02} {"index":{"_index":"mobile_phones"}} {"id":1120,"name":"Lava A59","brand":"Lava","model":"A59","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":44.41,"price_usd":52.53} {"index":{"_index":"mobile_phones"}} {"id":1121,"name":"Lava A48","brand":"Lava","model":"A48","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1122,"name":"Panasonic Eluga A2","brand":"Panasonic","model":"Eluga A2","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":57.43,"price_usd":67.93} {"index":{"_index":"mobile_phones"}} {"id":1123,"name":"Lava A79","brand":"Lava","model":"A79","battery_capacity_mAh":2200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":44.42,"price_usd":52.55} {"index":{"_index":"mobile_phones"}} {"id":1124,"name":"Micromax Canvas Selfie 4","brand":"Micromax","model":"Canvas Selfie 4","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.14,"price_usd":74.69} {"index":{"_index":"mobile_phones"}} {"id":1125,"name":"Micromax Bolt Selfie","brand":"Micromax","model":"Bolt Selfie","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1126,"name":"Intex Cloud String HD","brand":"Intex","model":"Cloud String HD","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1127,"name":"Intex Aqua Secure","brand":"Intex","model":"Aqua Secure","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":51.46,"price_usd":60.88} {"index":{"_index":"mobile_phones"}} {"id":1128,"name":"Motorola Moto G4 Play","brand":"Motorola","model":"Moto G4 Play","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1129,"name":"Sony Xperia XA Ultra","brand":"Sony","model":"Xperia XA Ultra","battery_capacity_mAh":2700,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21.5,"front_camera":16,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1130,"name":"Lefalsevo Vibe C","brand":"Lefalsevo","model":"Vibe C","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1131,"name":"HTC Desire 628 Dual SIM","brand":"HTC","model":"Desire 628 Dual SIM","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.73,"price_usd":81.3} {"index":{"_index":"mobile_phones"}} {"id":1132,"name":"Lyf Wind 4","brand":"Lyf","model":"Wind 4","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1133,"name":"Lyf Flame 2","brand":"Lyf","model":"Flame 2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1134,"name":"Lava A67","brand":"Lava","model":"A67","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":35.95,"price_usd":42.52} {"index":{"_index":"mobile_phones"}} {"id":1135,"name":"Micromax Canvas XP 4G","brand":"Micromax","model":"Canvas XP 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"false","bluetooth":"false","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.6,"price_usd":57.49} {"index":{"_index":"mobile_phones"}} {"id":1136,"name":"Intex Cloud Fame","brand":"Intex","model":"Cloud Fame","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":41.77,"price_usd":49.41} {"index":{"_index":"mobile_phones"}} {"id":1137,"name":"Intex Aqua Joy","brand":"Intex","model":"Aqua Joy","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.2,"price_usd":33.35} {"index":{"_index":"mobile_phones"}} {"id":1138,"name":"HTC Desire 830","brand":"HTC","model":"Desire 830","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1139,"name":"Micromax Canvas Mega 2","brand":"Micromax","model":"Canvas Mega 2","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.64,"price_usd":94.21} {"index":{"_index":"mobile_phones"}} {"id":1140,"name":"iBall Andi 5N Dude","brand":"iBall","model":"Andi 5N Dude","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1141,"name":"Hofalser 5C","brand":"Hofalser","model":"5C","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1142,"name":"Panasonic Eluga I3","brand":"Panasonic","model":"Eluga I3","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.69,"price_usd":69.42} {"index":{"_index":"mobile_phones"}} {"id":1143,"name":"Swipe Elite falsete","brand":"Swipe","model":"Elite falsete","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.32,"price_usd":93.83} {"index":{"_index":"mobile_phones"}} {"id":1144,"name":"Asus ZenFone Go 4.5 (ZB452KG)","brand":"Asus","model":"ZenFone Go 4.5 (ZB452KG)","battery_capacity_mAh":2070,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1145,"name":"Intex Aqua 4.5 Pro","brand":"Intex","model":"Aqua 4.5 Pro","battery_capacity_mAh":1500,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":50.24,"price_usd":59.43} {"index":{"_index":"mobile_phones"}} {"id":1146,"name":"ZTE Blade A910","brand":"ZTE","model":"Blade A910","battery_capacity_mAh":2540,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1147,"name":"ZTE Blade V7 Max","brand":"ZTE","model":"Blade V7 Max","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1148,"name":"LeEco Le 2 Pro","brand":"LeEco","model":"Le 2 Pro","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":62.3,"price_usd":73.69} {"index":{"_index":"mobile_phones"}} {"id":1149,"name":"Nubia Z11 mini","brand":"Nubia","model":"Z11 mini","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":64,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1150,"name":"Gionee Pioneer P5W","brand":"Gionee","model":"Pioneer P5W","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":50.77,"price_usd":60.05} {"index":{"_index":"mobile_phones"}} {"id":1151,"name":"Yu Yureka falsete","brand":"Yu","model":"reka falsete","battery_capacity_mAh":4000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1152,"name":"Videocon Krypton V50DA","brand":"Videocon","model":"Krypton V50DA","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.37,"price_usd":50.12} {"index":{"_index":"mobile_phones"}} {"id":1153,"name":"HTC 10 Lifestyle","brand":"HTC","model":"10 Lifestyle","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":12,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":103.13,"price_usd":121.99} {"index":{"_index":"mobile_phones"}} {"id":1154,"name":"Meizu m3 falsete","brand":"Meizu","model":"m3 falsete","battery_capacity_mAh":4100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":55.95,"price_usd":66.18} {"index":{"_index":"mobile_phones"}} {"id":1155,"name":"Reach Opulent","brand":"Reach","model":"Opulent","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":28.45,"price_usd":33.65} {"index":{"_index":"mobile_phones"}} {"id":1156,"name":"Asus Zenfone Go 5.0 LTE","brand":"Asus","model":"Zenfone Go 5.0 LTE","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1157,"name":"Gionee Pioneer P5 mini","brand":"Gionee","model":"Pioneer P5 mini","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1158,"name":"Samsung Galaxy A9 Pro","brand":"Samsung","model":"Galaxy A9 Pro","battery_capacity_mAh":5000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":211.32,"price_usd":249.97} {"index":{"_index":"mobile_phones"}} {"id":1159,"name":"Intex Cloud Gem+","brand":"Intex","model":"Cloud Gem+","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1160,"name":"Samsung Galaxy J7 (2016)","brand":"Samsung","model":"Galaxy J7 (2016)","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1080,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":142.25,"price_usd":168.27} {"index":{"_index":"mobile_phones"}} {"id":1161,"name":"Samsung Galaxy J5 (2016)","brand":"Samsung","model":"Galaxy J5 (2016)","battery_capacity_mAh":3100,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1162,"name":"Vivo Y31L","brand":"Vivo","model":"Y31L","battery_capacity_mAh":2200,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":90.95,"price_usd":107.58} {"index":{"_index":"mobile_phones"}} {"id":1163,"name":"Reach Cogent","brand":"Reach","model":"Cogent","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.27,"price_usd":27.52} {"index":{"_index":"mobile_phones"}} {"id":1164,"name":"Lava V2s","brand":"Lava","model":"V2s","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1165,"name":"Videocon Krypton V50FG","brand":"Videocon","model":"Krypton V50FG","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":69.8,"price_usd":82.57} {"index":{"_index":"mobile_phones"}} {"id":1166,"name":"Lava A52","brand":"Lava","model":"A52","battery_capacity_mAh":1200,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1167,"name":"Intex Cloud Force","brand":"Intex","model":"Cloud Force","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":35.25,"price_usd":41.7} {"index":{"_index":"mobile_phones"}} {"id":1168,"name":"Intex Aqua 4G Strong","brand":"Intex","model":"Aqua 4G Strong","battery_capacity_mAh":1700,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":768,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.75,"price_usd":81.32} {"index":{"_index":"mobile_phones"}} {"id":1169,"name":"Lava Flair S1","brand":"Lava","model":"Flair S1","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1170,"name":"InFocus Bingo 20 (M425)","brand":"InFocus","model":"Bingo 20 (M425)","battery_capacity_mAh":2300,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":850,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":1171,"name":"Panasonic T50","brand":"Panasonic","model":"T50","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":71.5,"price_usd":84.57} {"index":{"_index":"mobile_phones"}} {"id":1172,"name":"Intex Aqua Twist","brand":"Intex","model":"Aqua Twist","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1173,"name":"mPhone 8","brand":"mPhone","model":"8","battery_capacity_mAh":3050,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1174,"name":"mPhone 7 Plus","brand":"mPhone","model":"7 Plus","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":16,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":78.25,"price_usd":92.57} {"index":{"_index":"mobile_phones"}} {"id":1175,"name":"Intex Cloud Breeze","brand":"Intex","model":"Cloud Breeze","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1176,"name":"Lyf Wind 6","brand":"Lyf","model":"Wind 6","battery_capacity_mAh":2250,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1177,"name":"Blu Life Mark","brand":"Blu","model":"Life Mark","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1178,"name":"Zopo Speed 8","brand":"Zopo","model":"Speed 8","battery_capacity_mAh":3600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":10,"ram_memory_mb":4000,"internal_storage_GB":32,"rear_camera":21,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.55,"price_usd":124.86} {"index":{"_index":"mobile_phones"}} {"id":1179,"name":"Xolo Era X","brand":"Xolo","model":"Era X","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":48.22,"price_usd":57.04} {"index":{"_index":"mobile_phones"}} {"id":1180,"name":"Intex Aqua Fish","brand":"Intex","model":"Aqua Fish","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Sailfish","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.76,"price_usd":60.04} {"index":{"_index":"mobile_phones"}} {"id":1181,"name":"ZTE Blade V7 Lite","brand":"ZTE","model":"Blade V7 Lite","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":40.61,"price_usd":48.04} {"index":{"_index":"mobile_phones"}} {"id":1182,"name":"Sony Xperia X","brand":"Sony","model":"Xperia X","battery_capacity_mAh":2620,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":1,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":211.42,"price_usd":250.09} {"index":{"_index":"mobile_phones"}} {"id":1183,"name":"Sony Xperia XA","brand":"Sony","model":"Xperia XA","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.55,"price_usd":100.01} {"index":{"_index":"mobile_phones"}} {"id":1184,"name":"HTC Desire 825","brand":"HTC","model":"Desire 825","battery_capacity_mAh":2700,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":83.45,"price_usd":98.71} {"index":{"_index":"mobile_phones"}} {"id":1185,"name":"HTC Desire 630","brand":"HTC","model":"Desire 630","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":108.93,"price_usd":128.85} {"index":{"_index":"mobile_phones"}} {"id":1186,"name":"HP Elite x3","brand":"HP","model":"Elite x3","battery_capacity_mAh":4150,"screen_size_inches":5.96,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":4,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":15,"front_camera":8,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":938.33,"price_usd":1109.96} {"index":{"_index":"mobile_phones"}} {"id":1187,"name":"Alcatel Idol 4","brand":"Alcatel","model":"Idol 4","battery_capacity_mAh":2610,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":179.79,"price_usd":212.67} {"index":{"_index":"mobile_phones"}} {"id":1188,"name":"Intex Aqua Ace Mini","brand":"Intex","model":"Aqua Ace Mini","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":72.44,"price_usd":85.69} {"index":{"_index":"mobile_phones"}} {"id":1189,"name":"Swipe Konnect 5.1","brand":"Swipe","model":"Konnect 5.1","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":43.35,"price_usd":51.28} {"index":{"_index":"mobile_phones"}} {"id":1190,"name":"LG Stylus 2","brand":"LG","model":"Stylus 2","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1191,"name":"Intex Cloud Crystal 2.5D","brand":"Intex","model":"Cloud Crystal 2.5D","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":71.92,"price_usd":85.07} {"index":{"_index":"mobile_phones"}} {"id":1192,"name":"Intex Aqua Freedom","brand":"Intex","model":"Aqua Freedom","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":32.78,"price_usd":38.77} {"index":{"_index":"mobile_phones"}} {"id":1193,"name":"Microsoft Lumia 650","brand":"Microsoft","model":"Lumia 650","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.66,"price_usd":124.98} {"index":{"_index":"mobile_phones"}} {"id":1194,"name":"LG X cam","brand":"LG","model":"X cam","battery_capacity_mAh":2520,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":84.61,"price_usd":100.09} {"index":{"_index":"mobile_phones"}} {"id":1195,"name":"Intex Aqua Craze","brand":"Intex","model":"Aqua Craze","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1196,"name":"Intex Aqua Lite","brand":"Intex","model":"Aqua Lite","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1197,"name":"Lava X11","brand":"Lava","model":"X11","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.4,"price_usd":99.84} {"index":{"_index":"mobile_phones"}} {"id":1198,"name":"Lava A88","brand":"Lava","model":"A88","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.34,"price_usd":61.92} {"index":{"_index":"mobile_phones"}} {"id":1199,"name":"Lefalsevo Vibe P1 Turbo","brand":"Lefalsevo","model":"Vibe P1 Turbo","battery_capacity_mAh":5000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":81.22,"price_usd":96.07} {"index":{"_index":"mobile_phones"}} {"id":1200,"name":"Lava A71","brand":"Lava","model":"A71","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1201,"name":"Intex Aqua Wing","brand":"Intex","model":"Aqua Wing","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1202,"name":"Intex Aqua Raze","brand":"Intex","model":"Aqua Raze","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":1,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1203,"name":"Panasonic P66 Mega","brand":"Panasonic","model":"P66 Mega","battery_capacity_mAh":3200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"false","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":56.04,"price_usd":66.3} {"index":{"_index":"mobile_phones"}} {"id":1204,"name":"Lyf Flame 1","brand":"Lyf","model":"Flame 1","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1205,"name":"Lava X3","brand":"Lava","model":"X3","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1206,"name":"Zopo Hero 1","brand":"Zopo","model":"Hero 1","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":1207,"name":"iBall Cobalt 5.5F Youva","brand":"iBall","model":"Cobalt 5.5F Youva","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":80.37,"price_usd":95.07} {"index":{"_index":"mobile_phones"}} {"id":1208,"name":"Micromax Canvas Juice 4","brand":"Micromax","model":"Canvas Juice 4","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.25,"price_usd":49.98} {"index":{"_index":"mobile_phones"}} {"id":1209,"name":"Vivo Y51L","brand":"Vivo","model":"Y51L","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":96.23,"price_usd":113.84} {"index":{"_index":"mobile_phones"}} {"id":1210,"name":"Lava V5","brand":"Lava","model":"V5","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":87.26,"price_usd":103.22} {"index":{"_index":"mobile_phones"}} {"id":1211,"name":"Lyf Water 2","brand":"Lyf","model":"Water 2","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":81.97,"price_usd":96.96} {"index":{"_index":"mobile_phones"}} {"id":1212,"name":"Lyf Water 1","brand":"Lyf","model":"Water 1","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.77,"price_usd":60.05} {"index":{"_index":"mobile_phones"}} {"id":1213,"name":"Lefalsevo K5 falsete","brand":"Lefalsevo","model":"K5 falsete","battery_capacity_mAh":3500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.08,"price_usd":112.47} {"index":{"_index":"mobile_phones"}} {"id":1214,"name":"Panasonic Eluga Turbo","brand":"Panasonic","model":"Eluga Turbo","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":147.94,"price_usd":175.0} {"index":{"_index":"mobile_phones"}} {"id":1215,"name":"Swipe Virtue","brand":"Swipe","model":"Virtue","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"false","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1216,"name":"Lava P7","brand":"Lava","model":"P7","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":36.48,"price_usd":43.15} {"index":{"_index":"mobile_phones"}} {"id":1217,"name":"Intex Aqua Air II","brand":"Intex","model":"Aqua Air II","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":49.6,"price_usd":58.68} {"index":{"_index":"mobile_phones"}} {"id":1218,"name":"Lava Iris Atom","brand":"Lava","model":"Iris Atom","battery_capacity_mAh":1550,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":54.99,"price_usd":65.04} {"index":{"_index":"mobile_phones"}} {"id":1219,"name":"Intex Cloud 4G Smart","brand":"Intex","model":"Cloud 4G Smart","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.52,"price_usd":59.76} {"index":{"_index":"mobile_phones"}} {"id":1220,"name":"Intex Cloud 3G Gem","brand":"Intex","model":"Cloud 3G Gem","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1221,"name":"Intex Cloud 3G Candy","brand":"Intex","model":"Cloud 3G Candy","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.14,"price_usd":25.01} {"index":{"_index":"mobile_phones"}} {"id":1222,"name":"Lefalsevo A7000 Turbo","brand":"Lefalsevo","model":"A7000 Turbo","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":148.07,"price_usd":175.15} {"index":{"_index":"mobile_phones"}} {"id":1223,"name":"Karbonn K9 Smart","brand":"Karbonn","model":"K9 Smart","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":49.6,"price_usd":58.68} {"index":{"_index":"mobile_phones"}} {"id":1224,"name":"Alcatel Pixi 4 (6)","brand":"Alcatel","model":"Pixi 4 (6)","battery_capacity_mAh":2580,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.28,"price_usd":50.02} {"index":{"_index":"mobile_phones"}} {"id":1225,"name":"LG K7","brand":"LG","model":"K7","battery_capacity_mAh":2125,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":10.51,"price_usd":12.44} {"index":{"_index":"mobile_phones"}} {"id":1226,"name":"LG K10","brand":"LG","model":"K10","battery_capacity_mAh":2300,"screen_size_inches":5.3,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":42.24,"price_usd":49.97} {"index":{"_index":"mobile_phones"}} {"id":1227,"name":"Intex Cloud Champ","brand":"Intex","model":"Cloud Champ","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":40.19,"price_usd":47.54} {"index":{"_index":"mobile_phones"}} {"id":1228,"name":"Lava Iris Atom 3","brand":"Lava","model":"Iris Atom 3","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":30.66,"price_usd":36.27} {"index":{"_index":"mobile_phones"}} {"id":1229,"name":"Intex Aqua Q7 Pro","brand":"Intex","model":"Aqua Q7 Pro","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":1230,"name":"Karbonn Titanium Moghul","brand":"Karbonn","model":"Titanium Moghul","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":92.01,"price_usd":108.85} {"index":{"_index":"mobile_phones"}} {"id":1231,"name":"Xolo One HD","brand":"Xolo","model":"One HD","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1232,"name":"Zen Cinemax 2","brand":"Zen","model":"Cinemax 2","battery_capacity_mAh":2900,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":39.55,"price_usd":46.78} {"index":{"_index":"mobile_phones"}} {"id":1233,"name":"Videocon Z55 Krypton","brand":"Videocon","model":"Z55 Krypton","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":31.2,"price_usd":36.91} {"index":{"_index":"mobile_phones"}} {"id":1234,"name":"Intex Aqua Star 4G","brand":"Intex","model":"Aqua Star 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":1235,"name":"Intex Cloud Cube","brand":"Intex","model":"Cloud Cube","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1236,"name":"Kult 10","brand":"Kult","model":"10","battery_capacity_mAh":2350,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1237,"name":"Micromax Canvas Pulse 4G","brand":"Micromax","model":"Canvas Pulse 4G","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":43.89,"price_usd":51.92} {"index":{"_index":"mobile_phones"}} {"id":1238,"name":"Asus ZenPad C 7.0 (Z170MG)","brand":"Asus","model":"ZenPad C 7.0 (Z170MG)","battery_capacity_mAh":3450,"screen_size_inches":7,"touchscreen":"false","resolution_x":1024,"resolution_y":600,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":65.56,"price_usd":77.56} {"index":{"_index":"mobile_phones"}} {"id":1239,"name":"Xiaomi Redmi falsete Prime","brand":"Xiaomi","model":"Redmi falsete Prime","battery_capacity_mAh":3100,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1240,"name":"iBall Andi 5.5H Weber","brand":"iBall","model":"Andi 5.5H Weber","battery_capacity_mAh":2200,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1241,"name":"Micromax Canvas Mega 4G","brand":"Micromax","model":"Canvas Mega 4G","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":50.66,"price_usd":59.93} {"index":{"_index":"mobile_phones"}} {"id":1242,"name":"Micromax Canvas Fire 4G+","brand":"Micromax","model":"Canvas Fire 4G+","battery_capacity_mAh":2000,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1243,"name":"Gionee P5W","brand":"Gionee","model":"P5W","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1244,"name":"ZTE Blade A1","brand":"ZTE","model":"Blade A1","battery_capacity_mAh":2800,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":30.67,"price_usd":36.28} {"index":{"_index":"mobile_phones"}} {"id":1245,"name":"Panasonic Eluga Mark","brand":"Panasonic","model":"Eluga Mark","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1246,"name":"Samsung Galaxy A7 (2016)","brand":"Samsung","model":"Galaxy A7 (2016)","battery_capacity_mAh":3300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1247,"name":"Videocon Z55 Delite","brand":"Videocon","model":"Z55 Delite","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":67.58,"price_usd":79.94} {"index":{"_index":"mobile_phones"}} {"id":1248,"name":"Videocon Infinium Z45 Amaze","brand":"Videocon","model":"Infinium Z45 Amaze","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1249,"name":"Micromax Canvas Pace 4G","brand":"Micromax","model":"Canvas Pace 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":79.31,"price_usd":93.82} {"index":{"_index":"mobile_phones"}} {"id":1250,"name":"Lava X10","brand":"Lava","model":"X10","battery_capacity_mAh":2900,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":126.92,"price_usd":150.13} {"index":{"_index":"mobile_phones"}} {"id":1251,"name":"Intex Cloud Zest","brand":"Intex","model":"Cloud Zest","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1252,"name":"Lava Iris Atom 2X","brand":"Lava","model":"Iris Atom 2X","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1253,"name":"Samsung Galaxy J3 (6)","brand":"Samsung","model":"Galaxy J3 (6)","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1254,"name":"Intex Aqua Air","brand":"Intex","model":"Aqua Air","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":43.26,"price_usd":51.17} {"index":{"_index":"mobile_phones"}} {"id":1255,"name":"Micromax Canvas Xpress 4G","brand":"Micromax","model":"Canvas Xpress 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":1256,"name":"Micromax Canvas Blaze 4G+","brand":"Micromax","model":"Canvas Blaze 4G+","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":40.18,"price_usd":47.53} {"index":{"_index":"mobile_phones"}} {"id":1257,"name":"Intex Aqua Super","brand":"Intex","model":"Aqua Super","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":61.86,"price_usd":73.18} {"index":{"_index":"mobile_phones"}} {"id":1258,"name":"Intex Aqua Wave","brand":"Intex","model":"Aqua Wave","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1259,"name":"Intex Aqua Q7","brand":"Intex","model":"Aqua Q7","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.26,"price_usd":27.51} {"index":{"_index":"mobile_phones"}} {"id":1260,"name":"iBall Andi Sprinter 4G","brand":"iBall","model":"Andi Sprinter 4G","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.7,"price_usd":58.79} {"index":{"_index":"mobile_phones"}} {"id":1261,"name":"Gionee S Plus","brand":"Gionee","model":"S Plus","battery_capacity_mAh":3150,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":68.64,"price_usd":81.2} {"index":{"_index":"mobile_phones"}} {"id":1262,"name":"InFocus M535","brand":"InFocus","model":"M535","battery_capacity_mAh":2600,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":73.93,"price_usd":87.45} {"index":{"_index":"mobile_phones"}} {"id":1263,"name":"HTC Desire 828 Dual SIM","brand":"HTC","model":"Desire 828 Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":4,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":84.6,"price_usd":100.08} {"index":{"_index":"mobile_phones"}} {"id":1264,"name":"HTC Desire 728G Dual SIM","brand":"HTC","model":"Desire 728G Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":122.54,"price_usd":144.95} {"index":{"_index":"mobile_phones"}} {"id":1265,"name":"Intex Aqua Young","brand":"Intex","model":"Aqua Young","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":51.82,"price_usd":61.3} {"index":{"_index":"mobile_phones"}} {"id":1266,"name":"Intex Aqua Play","brand":"Intex","model":"Aqua Play","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":0.3,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1267,"name":"Xolo Black 1X","brand":"Xolo","model":"Black 1X","battery_capacity_mAh":2400,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.75,"price_usd":125.1} {"index":{"_index":"mobile_phones"}} {"id":1268,"name":"InFocus M260","brand":"InFocus","model":"M260","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.34,"price_usd":31.15} {"index":{"_index":"mobile_phones"}} {"id":1269,"name":"Karbonn Alfa A91 Power","brand":"Karbonn","model":"Alfa A91 Power","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":1270,"name":"Oppo Neo 7","brand":"Oppo","model":"Neo 7","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":1271,"name":"Samsung Galaxy On7","brand":"Samsung","model":"Galaxy On7","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":105.52,"price_usd":124.82} {"index":{"_index":"mobile_phones"}} {"id":1272,"name":"Micromax Bolt Q332","brand":"Micromax","model":"Bolt Q332","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":2,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1273,"name":"Samsung Galaxy On5","brand":"Samsung","model":"Galaxy On5","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.23,"price_usd":58.24} {"index":{"_index":"mobile_phones"}} {"id":1274,"name":"Lefalsevo A1000","brand":"Lefalsevo","model":"A1000","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.54,"price_usd":44.4} {"index":{"_index":"mobile_phones"}} {"id":1275,"name":"Lefalsevo A6000 Shot","brand":"Lefalsevo","model":"A6000 Shot","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1276,"name":"Lava Iris Fuel F1","brand":"Lava","model":"Iris Fuel F1","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":92.01,"price_usd":108.85} {"index":{"_index":"mobile_phones"}} {"id":1277,"name":"Intex Aqua Life III","brand":"Intex","model":"Aqua Life III","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":56.05,"price_usd":66.31} {"index":{"_index":"mobile_phones"}} {"id":1278,"name":"Intex Cloud Swift","brand":"Intex","model":"Cloud Swift","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":98.36,"price_usd":116.35} {"index":{"_index":"mobile_phones"}} {"id":1279,"name":"Zopo Speed 7 Plus","brand":"Zopo","model":"Speed 7 Plus","battery_capacity_mAh":3000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":68.74,"price_usd":81.31} {"index":{"_index":"mobile_phones"}} {"id":1280,"name":"Micromax Bolt S302","brand":"Micromax","model":"Bolt S302","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.69,"price_usd":28.02} {"index":{"_index":"mobile_phones"}} {"id":1281,"name":"Micromax Bolt Q331","brand":"Micromax","model":"Bolt Q331","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1282,"name":"Samsung Z3","brand":"Samsung","model":"Z3","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Tizen","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.78,"price_usd":62.43} {"index":{"_index":"mobile_phones"}} {"id":1283,"name":"Panasonic P65 Flash","brand":"Panasonic","model":"P65 Flash","battery_capacity_mAh":2910,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":89.89,"price_usd":106.33} {"index":{"_index":"mobile_phones"}} {"id":1284,"name":"Panasonic P50 Idol","brand":"Panasonic","model":"P50 Idol","battery_capacity_mAh":2150,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":1285,"name":"ZTE Axon Mini","brand":"ZTE","model":"Axon Mini","battery_capacity_mAh":2800,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":62.4,"price_usd":73.81} {"index":{"_index":"mobile_phones"}} {"id":1286,"name":"iBall Andi 4.5C Magnifico","brand":"iBall","model":"Andi 4.5C Magnifico","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":40.61,"price_usd":48.04} {"index":{"_index":"mobile_phones"}} {"id":1287,"name":"Microsoft Lumia 550","brand":"Microsoft","model":"Lumia 550","battery_capacity_mAh":2100,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":57.09,"price_usd":67.53} {"index":{"_index":"mobile_phones"}} {"id":1288,"name":"Microsoft Lumia 950","brand":"Microsoft","model":"Lumia 950","battery_capacity_mAh":3000,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20,"front_camera":5,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":437.76,"price_usd":517.83} {"index":{"_index":"mobile_phones"}} {"id":1289,"name":"Microsoft Lumia 950 XL","brand":"Microsoft","model":"Lumia 950 XL","battery_capacity_mAh":3340,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":20,"front_camera":5,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":264.4,"price_usd":312.76} {"index":{"_index":"mobile_phones"}} {"id":1290,"name":"Micromax Bolt Q339","brand":"Micromax","model":"Bolt Q339","battery_capacity_mAh":1650,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1291,"name":"LG V10","brand":"LG","model":"V10","battery_capacity_mAh":3000,"screen_size_inches":5.7,"touchscreen":"true","resolution_x":1440,"resolution_y":2560,"processor":6,"ram_memory_mb":4000,"internal_storage_GB":64,"rear_camera":16,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":158.64,"price_usd":187.65} {"index":{"_index":"mobile_phones"}} {"id":1292,"name":"Videocon Infinium Z51 Punch","brand":"Videocon","model":"Infinium Z51 Punch","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":1,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":57.1,"price_usd":67.55} {"index":{"_index":"mobile_phones"}} {"id":1293,"name":"Videocon Infinium Z51Q Star","brand":"Videocon","model":"Infinium Z51Q Star","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":29.6,"price_usd":35.02} {"index":{"_index":"mobile_phones"}} {"id":1294,"name":"Vivo Y15S","brand":"Vivo","model":"Y15S","battery_capacity_mAh":1900,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.87,"price_usd":62.54} {"index":{"_index":"mobile_phones"}} {"id":1295,"name":"Samsung Galaxy J1 Ace","brand":"Samsung","model":"Galaxy J1 Ace","battery_capacity_mAh":1800,"screen_size_inches":4.3,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.48,"price_usd":53.8} {"index":{"_index":"mobile_phones"}} {"id":1296,"name":"Vivo Y27L","brand":"Vivo","model":"Y27L","battery_capacity_mAh":2260,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.2,"price_usd":112.61} {"index":{"_index":"mobile_phones"}} {"id":1297,"name":"Micromax Canvas Play 4G","brand":"Micromax","model":"Canvas Play 4G","battery_capacity_mAh":2820,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1298,"name":"Lava Iris Fuel F1 Mini","brand":"Lava","model":"Iris Fuel F1 Mini","battery_capacity_mAh":2000,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1299,"name":"Micromax Canvas Blaze 4G","brand":"Micromax","model":"Canvas Blaze 4G","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":1300,"name":"Gionee Pioneer P3S","brand":"Gionee","model":"Pioneer P3S","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":485,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":16,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":34.89,"price_usd":41.27} {"index":{"_index":"mobile_phones"}} {"id":1301,"name":"Micromax Bolt Q338","brand":"Micromax","model":"Bolt Q338","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.56,"price_usd":62.18} {"index":{"_index":"mobile_phones"}} {"id":1302,"name":"Intex Aqua Power II","brand":"Intex","model":"Aqua Power II","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1303,"name":"Micromax Canvas Juice 3+","brand":"Micromax","model":"Canvas Juice 3+","battery_capacity_mAh":4000,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1304,"name":"Intex Aqua Glam","brand":"Intex","model":"Aqua Glam","battery_capacity_mAh":1850,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.43,"price_usd":53.73} {"index":{"_index":"mobile_phones"}} {"id":1305,"name":"iBall Cobalt Solus 4G","brand":"iBall","model":"Cobalt Solus 4G","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1306,"name":"Micromax Canvas Juice 3","brand":"Micromax","model":"Canvas Juice 3","battery_capacity_mAh":4000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":45.37,"price_usd":53.67} {"index":{"_index":"mobile_phones"}} {"id":1307,"name":"HTC Desire 728 Dual SIM","brand":"HTC","model":"Desire 728 Dual SIM","battery_capacity_mAh":2800,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1308,"name":"Lefalsevo Vibe P1m","brand":"Lefalsevo","model":"Vibe P1m","battery_capacity_mAh":3900,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1309,"name":"Sony Xperia Z5 Premium Dual","brand":"Sony","model":"Xperia Z5 Premium Dual","battery_capacity_mAh":3430,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":2160,"resolution_y":3840,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":32,"rear_camera":23,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":608.14,"price_usd":719.38} {"index":{"_index":"mobile_phones"}} {"id":1310,"name":"Acer Liquid Z530","brand":"Acer","model":"Liquid Z530","battery_capacity_mAh":2420,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":60.81,"price_usd":71.94} {"index":{"_index":"mobile_phones"}} {"id":1311,"name":"Micromax Canvas Fire 4G","brand":"Micromax","model":"Canvas Fire 4G","battery_capacity_mAh":1850,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1312,"name":"Intex Cloud V","brand":"Intex","model":"Cloud V","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":1313,"name":"iBall Andi 4.5 O'Buddy","brand":"iBall","model":"Andi 4.5 O'Buddy","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":1,"rear_camera":8,"front_camera":3.2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.83,"price_usd":62.49} {"index":{"_index":"mobile_phones"}} {"id":1314,"name":"Videocon Z55 Dash","brand":"Videocon","model":"Z55 Dash","battery_capacity_mAh":2200,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.16,"price_usd":68.8} {"index":{"_index":"mobile_phones"}} {"id":1315,"name":"Intex Aqua Turbo 4G","brand":"Intex","model":"Aqua Turbo 4G","battery_capacity_mAh":3000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":59.75,"price_usd":70.67} {"index":{"_index":"mobile_phones"}} {"id":1316,"name":"Zopo Speed 7","brand":"Zopo","model":"Speed 7","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13.2,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1317,"name":"Panasonic Eluga Switch","brand":"Panasonic","model":"Eluga Switch","battery_capacity_mAh":2910,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":32,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":158.54,"price_usd":187.54} {"index":{"_index":"mobile_phones"}} {"id":1318,"name":"Intex Aqua 3G Neo","brand":"Intex","model":"Aqua 3G Neo","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":25.37,"price_usd":30.01} {"index":{"_index":"mobile_phones"}} {"id":1319,"name":"Lefalsevo A2010","brand":"Lefalsevo","model":"A2010","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.46,"price_usd":75.07} {"index":{"_index":"mobile_phones"}} {"id":1320,"name":"Lava Flair P1i","brand":"Lava","model":"Flair P1i","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":400,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":23.5,"price_usd":27.8} {"index":{"_index":"mobile_phones"}} {"id":1321,"name":"Panasonic T45 4G","brand":"Panasonic","model":"T45 4G","battery_capacity_mAh":1800,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":49.18,"price_usd":58.18} {"index":{"_index":"mobile_phones"}} {"id":1322,"name":"Panasonic Eluga I2","brand":"Panasonic","model":"Eluga I2","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":61.66,"price_usd":72.94} {"index":{"_index":"mobile_phones"}} {"id":1323,"name":"Panasonic Eluga L2","brand":"Panasonic","model":"Eluga L2","battery_capacity_mAh":2500,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1324,"name":"Lava Iris Atom 2","brand":"Lava","model":"Iris Atom 2","battery_capacity_mAh":1750,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"false","price_gbp":45.47,"price_usd":53.78} {"index":{"_index":"mobile_phones"}} {"id":1325,"name":"iBall Andi 5U Platifalse","brand":"iBall","model":"Andi 5U Platifalse","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":8,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.01,"price_usd":43.78} {"index":{"_index":"mobile_phones"}} {"id":1326,"name":"Intex Aqua Sense 5.0","brand":"Intex","model":"Aqua Sense 5.0","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":41.24,"price_usd":48.78} {"index":{"_index":"mobile_phones"}} {"id":1327,"name":"Philips Xenium S309","brand":"Philips","model":"Xenium S309","battery_capacity_mAh":1600,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"false","price_gbp":33.83,"price_usd":40.02} {"index":{"_index":"mobile_phones"}} {"id":1328,"name":"Intex Cloud Pace","brand":"Intex","model":"Cloud Pace","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":540,"resolution_y":960,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":47.58,"price_usd":56.29} {"index":{"_index":"mobile_phones"}} {"id":1329,"name":"Blu Win HD LTE","brand":"Blu","model":"Win HD LTE","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Windows","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"true","price_gbp":47.59,"price_usd":56.3} {"index":{"_index":"mobile_phones"}} {"id":1330,"name":"Intex Aqua Q1+","brand":"Intex","model":"Aqua Q1+","battery_capacity_mAh":1600,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":47.05,"price_usd":55.66} {"index":{"_index":"mobile_phones"}} {"id":1331,"name":"Intex Aqua Dream II","brand":"Intex","model":"Aqua Dream II","battery_capacity_mAh":2300,"screen_size_inches":5.5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":86.73,"price_usd":102.59} {"index":{"_index":"mobile_phones"}} {"id":1332,"name":"Asus ZenFone 2 Laser (ZE601KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE601KL)","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":95.18,"price_usd":112.59} {"index":{"_index":"mobile_phones"}} {"id":1333,"name":"Intex Cloud 4G Star","brand":"Intex","model":"Cloud 4G Star","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"false","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1334,"name":"Lava Iris X5 4G","brand":"Lava","model":"Iris X5 4G","battery_capacity_mAh":2500,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":8,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":74.02,"price_usd":87.56} {"index":{"_index":"mobile_phones"}} {"id":1335,"name":"Asus ZenFone 2 Laser (ZE500KL)","brand":"Asus","model":"ZenFone 2 Laser (ZE500KL)","battery_capacity_mAh":2070,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":8,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":63.35,"price_usd":74.94} {"index":{"_index":"mobile_phones"}} {"id":1336,"name":"Sony Xperia M5","brand":"Sony","model":"Xperia M5","battery_capacity_mAh":2600,"screen_size_inches":5,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":3000,"internal_storage_GB":16,"rear_camera":21.5,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":63.45,"price_usd":75.05} {"index":{"_index":"mobile_phones"}} {"id":1337,"name":"Sony Xperia C5 Ultra","brand":"Sony","model":"Xperia C5 Ultra","battery_capacity_mAh":2930,"screen_size_inches":6,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":13,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":1,"3G":"true","4G":"true","price_gbp":274.88,"price_usd":325.16} {"index":{"_index":"mobile_phones"}} {"id":1338,"name":"Lava Iris X1 Selfie","brand":"Lava","model":"Iris X1 Selfie","battery_capacity_mAh":2000,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1339,"name":"InFocus M808","brand":"InFocus","model":"M808","battery_capacity_mAh":2450,"screen_size_inches":5.2,"touchscreen":"true","resolution_x":1080,"resolution_y":1920,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":1,"3G":"true","4G":"true","price_gbp":47.49,"price_usd":56.17} {"index":{"_index":"mobile_phones"}} {"id":1340,"name":"Panasonic Love T10","brand":"Panasonic","model":"Love T10","battery_capacity_mAh":1400,"screen_size_inches":3.5,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":21.15,"price_usd":25.02} {"index":{"_index":"mobile_phones"}} {"id":1341,"name":"iBall Andi HD6","brand":"iBall","model":"Andi HD6","battery_capacity_mAh":3000,"screen_size_inches":6,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":52.88,"price_usd":62.55} {"index":{"_index":"mobile_phones"}} {"id":1342,"name":"Lava Flair Z1","brand":"Lava","model":"Flair Z1","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1343,"name":"Intex Aqua Y2 Power","brand":"Intex","model":"Aqua Y2 Power","battery_capacity_mAh":2900,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.83,"price_usd":50.67} {"index":{"_index":"mobile_phones"}} {"id":1344,"name":"LG Max","brand":"LG","model":"Max","battery_capacity_mAh":2540,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.3,"price_usd":50.03} {"index":{"_index":"mobile_phones"}} {"id":1345,"name":"Karbonn Titanium Mach One Plus","brand":"Karbonn","model":"Titanium Mach One Plus","battery_capacity_mAh":1800,"screen_size_inches":4.7,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":42.2,"price_usd":49.92} {"index":{"_index":"mobile_phones"}} {"id":1346,"name":"Panasonic T33","brand":"Panasonic","model":"T33","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.62,"price_usd":37.41} {"index":{"_index":"mobile_phones"}} {"id":1347,"name":"iBall Andi 3.5V Genius2","brand":"iBall","model":"Andi 3.5V Genius2","battery_capacity_mAh":1250,"screen_size_inches":3.5,"touchscreen":"true","resolution_x":320,"resolution_y":480,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.43,"price_usd":31.26} {"index":{"_index":"mobile_phones"}} {"id":1348,"name":"Spice XLife 406","brand":"Spice","model":"XLife 406","battery_capacity_mAh":1450,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":1.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":37.02,"price_usd":43.79} {"index":{"_index":"mobile_phones"}} {"id":1349,"name":"Micromax Bolt D303","brand":"Micromax","model":"Bolt D303","battery_capacity_mAh":1300,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":3.2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.56,"price_usd":37.33} {"index":{"_index":"mobile_phones"}} {"id":1350,"name":"Vivo V1","brand":"Vivo","model":"V1","battery_capacity_mAh":2300,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":4,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"true","price_gbp":161.82,"price_usd":191.42} {"index":{"_index":"mobile_phones"}} {"id":1351,"name":"Panasonic Eluga Z","brand":"Panasonic","model":"Eluga Z","battery_capacity_mAh":2050,"screen_size_inches":5,"touchscreen":"true","resolution_x":720,"resolution_y":1280,"processor":8,"ram_memory_mb":2000,"internal_storage_GB":16,"rear_camera":13,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":58.48,"price_usd":69.17} {"index":{"_index":"mobile_phones"}} {"id":1352,"name":"Xolo Era","brand":"Xolo","model":"Era","battery_capacity_mAh":2100,"screen_size_inches":5,"touchscreen":"true","resolution_x":854,"resolution_y":480,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":39.12,"price_usd":46.28} {"index":{"_index":"mobile_phones"}} {"id":1353,"name":"Intex Aqua Y2 Ultra","brand":"Intex","model":"Aqua Y2 Ultra","battery_capacity_mAh":1400,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":38.06,"price_usd":45.03} {"index":{"_index":"mobile_phones"}} {"id":1354,"name":"Intex Aqua A2","brand":"Intex","model":"Aqua A2","battery_capacity_mAh":1500,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":4,"ram_memory_mb":512,"internal_storage_GB":8,"rear_camera":5,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":27.49,"price_usd":32.52} {"index":{"_index":"mobile_phones"}} {"id":1355,"name":"Videocon Infinium Z51 falseva+","brand":"Videocon","model":"Infinium Z51 falseva+","battery_capacity_mAh":2000,"screen_size_inches":5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":4,"ram_memory_mb":1000,"internal_storage_GB":8,"rear_camera":8,"front_camera":5,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.09,"price_usd":36.78} {"index":{"_index":"mobile_phones"}} {"id":1356,"name":"Intex Aqua Y4","brand":"Intex","model":"Aqua Y4","battery_capacity_mAh":1700,"screen_size_inches":4.5,"touchscreen":"true","resolution_x":480,"resolution_y":854,"processor":2,"ram_memory_mb":512,"internal_storage_GB":4,"rear_camera":5,"front_camera":2,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"false","number_of_sims":2,"3G":"true","4G":"false","price_gbp":31.72,"price_usd":37.52} {"index":{"_index":"mobile_phones"}} {"id":1357,"name":"iBall Andi4 B20","brand":"iBall","model":"Andi4 B20","battery_capacity_mAh":1250,"screen_size_inches":4,"touchscreen":"true","resolution_x":480,"resolution_y":800,"processor":1,"ram_memory_mb":256,"internal_storage_GB":0.512,"rear_camera":2,"front_camera":0.3,"operating_system":"Android","wifi":"true","bluetooth":"true","gps":"true","number_of_sims":2,"3G":"true","4G":"false","price_gbp":26.42,"price_usd":31.25} ================================================ FILE: datasets/movie_bulk_data.json ================================================ POST _bulk {"index":{"_index":"movies","_id":"1"}} {"title": "The Shawshank Redemption","synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.","actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"] ,"director":" Frank Darabont ","rating":"9.3","certificate":"R","genre": "Drama "} {"index":{"_index":"movies","_id":"2"}} {"title": "The Godfather","synopsis": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.","actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.2","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"3"}} {"title": "The Dark Knight","synopsis": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","actors": ["Christian Bale", "Heath Ledger", "Aaron Eckhart", "Michael Caine"] ,"director":" Christopher Nolan ","rating":"9.0","certificate":"PG-13","genre": ["Action", "Crime", "Drama"] } {"index":{"_index":"movies","_id":"4"}} {"title": "The Godfather: Part II","synopsis": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.","actors": ["Al Pacino", "Robert De Niro", "Robert Duvall", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.0","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"5"}} {"title": "12 Angry Men","synopsis": "A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.","actors": ["Henry Fonda", "Lee J. Cobb", "Martin Balsam", " John Fiedler"] ,"director":" Sidney Lumet ","rating":"9.0","certificate":"Approved","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"6"}} {"title": "The Lord of the Rings: The Return of the King","synopsis": "Gandalf and Aragorn lead the World of Men against Saurons's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.","actors": ["Elijah Wood", "Viggo Mortensen", "Ian McKellen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.9","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"7"}} {"title": "Pulp Fiction","synopsis": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.","actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson", "Bruce Willis"] ,"director":" Quentin Tarantino ","rating":"8.9","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"8"}} {"title": "Schindler's List","synopsis": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.","actors": ["Liam Neeson", "Ralph Fiennes", "Ben Kingsley", "Caroline Goodall"] ,"director":" Steven Spielberg ","rating":"8.9","certificate":"R","genre": ["Biography", "Drama", "History"] } {"index":{"_index":"movies","_id":"9"}} {"title": "Inception","synopsis": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.","actors": ["Leonardo DiCaprio", "Joseph Gordon-Levitt", "Elliot Page", "Ken Watanabe"] ,"director":" Christopher Nolan ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Sci-Fi"] } {"index":{"_index":"movies","_id":"10"}} {"title": "Fight Club","synopsis": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.","actors": ["Brad Pitt", "Edward Norton", "Meat Loaf", "Zach Grenier"] ,"director":" David Fincher ","rating":"8.8","certificate":"R","genre": "Drama"} {"index":{"_index":"movies","_id":"11"}} {"title": "The Lord of the Rings: The Fellowship of the Ring","synopsis": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.","actors": ["Elijah Wood", "Ian McKellen", "Orlando Bloom", "Sean Bean"] ,"director":" Peter Jackson ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"12"}} {"title": "Forrest Gump","synopsis": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.","actors": ["Tom Hanks", "Robin Wright", "Gary Sinise", "Sally Field"] ,"director":" Robert Zemeckis ","rating":"8.8","certificate":"PG-13","genre": ["Drama", "Romance"] } {"index":{"_index":"movies","_id":"13"}} {"title": "The Good, the Bad and the Ugly","synopsis": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.","actors": ["Clint Eastwood", "Eli Wallach", "Lee Van Cleef", "Aldo Giuffrè"] ,"director":" Sergio Leone ","rating":"8.8","certificate":"R","genre": "Western"} {"index":{"_index":"movies","_id":"14"}} {"title": "The Lord of the Rings: The Two Towers","synopsis": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.","actors": ["Elijah Wood", "Ian McKellen", "Viggo Mortensen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"]} {"index":{"_index":"movies","_id":"15"}} {"title": "The Matrix","synopsis": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.","actors": ["Keanu Reeves", "Laurence Fishburne", "Carrie-Anne Moss", "Hugo Weaving"] ,"director":["Lana Wachowski", "Lilly Wachowski"] ,"rating":"8.7","certificate":"R","genre": ["Action", "Sci-Fi"] } {"index":{"_index":"movies","_id":"16"}} {"title": "Goodfellas","synopsis": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.","actors": ["Robert De Niro", "Ray Liotta", "Joe Pesci", "Lorraine Bracco"] ,"director":" Martin Scorsese ","rating":"8.7","certificate":"R","genre": ["Biography", "Drama", "Crime"] } {"index":{"_index":"movies","_id":"17"}} {"title": "Star Wars: Episode V - The Empire Strikes Back","synopsis": "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.","actors": ["Mark Hamill", "Harrison Ford", "Carrie Fisher", "Billy Dee Williams"] ,"director":" Irvin Kershner ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Fantasy"] } {"index":{"_index":"movies","_id":"18"}} {"title": "One Flew Over the Cuckoo's Nest","synopsis": "A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.","actors": ["Jack Nicholson", "Louise Fletcher", "Michael Berryman", "Peter Brocco"] ,"director":" Milos Forman ","rating":"8.7","certificate":"R","genre": "Drama" } {"index":{"_index":"movies","_id":"19"}} {"title": "Parasite","synopsis": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.","actors": ["Kang-ho Song", "Sun-kyun Lee", "Yeo-jeong Cho", "Woo-sik Choi"] ,"director":" Bong Joon Ho ","rating":"8.6","certificate":"R","genre": ["Comedy", "Drama", "Thriller"] } {"index":{"_index":"movies","_id":"20"}} {"title": "Interstellar","synopsis": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.","actors": ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Mackenzie Foy"] ,"director":" Christopher Nolan ","rating":"8.6","certificate":"PG-13","genre": ["Adventure", "Drama", "Sci-Fi"] } {"index":{"_index":"movies","_id":"21"}} {"title": "City of God","synopsis": "In the slums of Rio, two kids paths diverge as one struggles to become a photographer and the other a kingpin.","actors": ["Alexandre Rodrigues", "Leandro Firmino", "Matheus Nachtergaele", "Phellipe Haagensen"] ,"director": ["Fernando Meirelles", "Kátia Lund"] ,"rating":"8.6","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"22"}} {"title": "Spirited Away","synopsis": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.","actors": ["Daveigh Chase", "Suzanne Pleshette", "Miyu Irino", "Rumi Hiiragi"] ,"director":" Hayao Miyazaki ","rating":"8.6","certificate":"PG-13","genre": ["Animation", "Adventure", "Family"]} {"index":{"_index":"movies","_id":"23"}} {"title": "Saving Private Ryan","synopsis": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.","actors": ["Tom Hanks", "Matt Damon", "Tom Sizemore", "Edward Burns"] ,"director":" Steven Spielberg ","rating":"8.6","certificate":"R","genre": ["Drama", "War"] } {"index":{"_index":"movies","_id":"24"}} {"title": "The Green Mile","synopsis": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.","actors": ["Tom Hanks", "Michael Clarke Duncan", "David Morse", "Bonnie Hunt"] ,"director":" Frank Darabont ","rating":"8.6","certificate":"R","genre": ["Crime", "Drama", "Fantasy"] } {"index":{"_index":"movies","_id":"25"}} {"title": "Life Is Beautiful","synopsis": "When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.","actors": ["Roberto Benigni", "Nicoletta Braschi", "Giorgio Cantarini", "Giustino Durano"] ,"director":" Roberto Benigni ","rating":"8.6","certificate":"PG-13","genre": ["Comedy", "Drama", "Romance"]} ================================================ FILE: datasets/movies2.json ================================================ POST _bulk {"index":{"_index":"movies","_id":"1"}} {"title": "The Shawshank Redemption","synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.","actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"] ,"director":" Frank Darabont ","rating":9.3,"certificate":"R","genre": "Drama "} {"index":{"_index":"movies","_id":"2"}} {"title": "The Godfather","synopsis": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.","actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":9.2,"certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"3"}} {"title": "The Dark Knight","synopsis": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","actors": ["Christian Bale", "Heath Ledger", "Aaron Eckhart", "Michael Caine"] ,"director":" Christopher Nolan ","rating":9.0,"certificate":"PG-13","genre": ["Action", "Crime", "Drama"] } {"index":{"_index":"movies","_id":"4"}} {"title": "The Godfather: Part II","synopsis": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.","actors": ["Al Pacino", "Robert De Niro", "Robert Duvall", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":9.0,"certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"5"}} {"title": "12 Angry Men","synopsis": "A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.","actors": ["Henry Fonda", "Lee J. Cobb", "Martin Balsam", " John Fiedler"] ,"director":" Sidney Lumet ","rating":9.0,"certificate":"Approved","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"6"}} {"title": "The Lord of the Rings: The Return of the King","synopsis": "Gandalf and Aragorn lead the World of Men against Saurons's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.","actors": ["Elijah Wood", "Viggo Mortensen", "Ian McKellen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":8.9,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"7"}} {"title": "Pulp Fiction","synopsis": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.","actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson", "Bruce Willis"] ,"director":" Quentin Tarantino ","rating":8.9,"certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"8"}} {"title": "Schindler's List","synopsis": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.","actors": ["Liam Neeson", "Ralph Fiennes", "Ben Kingsley", "Caroline Goodall"] ,"director":" Steven Spielberg ","rating":8.9,"certificate":"R","genre": ["Biography", "Drama", "History"] } {"index":{"_index":"movies","_id":"9"}} {"title": "Inception","synopsis": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.","actors": ["Leonardo DiCaprio", "Joseph Gordon-Levitt", "Elliot Page", "Ken Watanabe"] ,"director":" Christopher Nolan ","rating":8.8,"certificate":"PG-13","genre": ["Action", "Adventure", "Sci-Fi"] } {"index":{"_index":"movies","_id":"10"}} {"title": "Fight Club","synopsis": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.","actors": ["Brad Pitt", "Edward Norton", "Meat Loaf", "Zach Grenier"] ,"director":" David Fincher ","rating":8.8,"certificate":"R","genre": "Drama"} {"index":{"_index":"movies","_id":"11"}} {"title": "The Lord of the Rings: The Fellowship of the Ring","synopsis": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.","actors": ["Elijah Wood", "Ian McKellen", "Orlando Bloom", "Sean Bean"] ,"director":" Peter Jackson ","rating":8.8,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"12"}} {"title": "Forrest Gump","synopsis": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.","actors": ["Tom Hanks", "Robin Wright", "Gary Sinise", "Sally Field"] ,"director":" Robert Zemeckis ","rating":8.8,"certificate":"PG-13","genre": ["Drama", "Romance"] } {"index":{"_index":"movies","_id":"13"}} {"title": "The Good, the Bad and the Ugly","synopsis": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.","actors": ["Clint Eastwood", "Eli Wallach", "Lee Van Cleef", "Aldo Giuffrè"] ,"director":" Sergio Leone ","rating":8.8,"certificate":"R","genre": "Western"} {"index":{"_index":"movies","_id":"14"}} {"title": "The Lord of the Rings: The Two Towers","synopsis": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.","actors": ["Elijah Wood", "Ian McKellen", "Viggo Mortensen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":8.7,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"]} {"index":{"_index":"movies","_id":"15"}} {"title": "The Matrix","synopsis": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.","actors": ["Keanu Reeves", "Laurence Fishburne", "Carrie-Anne Moss", "Hugo Weaving"] ,"director":["Lana Wachowski", "Lilly Wachowski"] ,"rating":8.7,"certificate":"R","genre": ["Action", "Sci-Fi"] } {"index":{"_index":"movies","_id":"16"}} {"title": "Goodfellas","synopsis": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.","actors": ["Robert De Niro", "Ray Liotta", "Joe Pesci", "Lorraine Bracco"] ,"director":" Martin Scorsese ","rating":8.7,"certificate":"R","genre": ["Biography", "Drama", "Crime"] } {"index":{"_index":"movies","_id":"17"}} {"title": "Star Wars: Episode V - The Empire Strikes Back","synopsis": "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.","actors": ["Mark Hamill", "Harrison Ford", "Carrie Fisher", "Billy Dee Williams"] ,"director":" Irvin Kershner ","rating":8.7,"certificate":"PG-13","genre": ["Action", "Adventure", "Fantasy"] } {"index":{"_index":"movies","_id":"18"}} {"title": "One Flew Over the Cuckoo's Nest","synopsis": "A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.","actors": ["Jack Nicholson", "Louise Fletcher", "Michael Berryman", "Peter Brocco"] ,"director":" Milos Forman ","rating":8.7,"certificate":"R","genre": "Drama" } {"index":{"_index":"movies","_id":"19"}} {"title": "Parasite","synopsis": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.","actors": ["Kang-ho Song", "Sun-kyun Lee", "Yeo-jeong Cho", "Woo-sik Choi"] ,"director":" Bong Joon Ho ","rating":8.6,"certificate":"R","genre": ["Comedy", "Drama", "Thriller"] } {"index":{"_index":"movies","_id":"20"}} {"title": "Interstellar","synopsis": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.","actors": ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Mackenzie Foy"] ,"director":" Christopher Nolan ","rating":8.6,"certificate":"PG-13","genre": ["Adventure", "Drama", "Sci-Fi"] } {"index":{"_index":"movies","_id":"21"}} {"title": "City of God","synopsis": "In the slums of Rio, two kids paths diverge as one struggles to become a photographer and the other a kingpin.","actors": ["Alexandre Rodrigues", "Leandro Firmino", "Matheus Nachtergaele", "Phellipe Haagensen"] ,"director": ["Fernando Meirelles", "Kátia Lund"] ,"rating":8.6,"certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"22"}} {"title": "Spirited Away","synopsis": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.","actors": ["Daveigh Chase", "Suzanne Pleshette", "Miyu Irino", "Rumi Hiiragi"] ,"director":" Hayao Miyazaki ","rating":8.6,"certificate":"PG-13","genre": ["Animation", "Adventure", "Family"]} {"index":{"_index":"movies","_id":"23"}} {"title": "Saving Private Ryan","synopsis": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.","actors": ["Tom Hanks", "Matt Damon", "Tom Sizemore", "Edward Burns"] ,"director":" Steven Spielberg ","rating":8.6,"certificate":"R","genre": ["Drama", "War"] } {"index":{"_index":"movies","_id":"24"}} {"title": "The Green Mile","synopsis": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.","actors": ["Tom Hanks", "Michael Clarke Duncan", "David Morse", "Bonnie Hunt"] ,"director":" Frank Darabont ","rating":8.6,"certificate":"R","genre": ["Crime", "Drama", "Fantasy"] } {"index":{"_index":"movies","_id":"25"}} {"title": "Life Is Beautiful","synopsis": "When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.","actors": ["Roberto Benigni", "Nicoletta Braschi", "Giorgio Cantarini", "Giustino Durano"] ,"director":" Roberto Benigni ","rating":8.6,"certificate":"PG-13","genre": ["Comedy", "Drama", "Romance"]} ================================================ FILE: datasets/products.txt ================================================ PUT _bulk {"index":{"_index":"products","_id":"1"}} {"product": "TV", "brand": "Samsung", "model": "UE75TU7020", "size": "75", "resolution": "4k", "type": "smart tv", "price": 799, "colour": "silver", "energy_rating": "A+", "overview": "Settle in for an epic movie marathon or boxset binge with this amazing 75-inch Samsung smart TV. The incredibly sharp 4K Ultra HD display shows off everything in breathtaking quality, with bright, lifelike colours truly immersing you in the action. Even classic hits will look their best thanks to the fantastic upscaling on offer from its Crystal 4K UHD processor. You\u2019ll really feel the action too, since the Adaptive Sound tech automatically adjusts the audio settings to suit whatever you\u2019re watching. And there\u2019s loads to keep you busy, with streaming apps and catch-up services available through your internet. Plus, if you ever lose the remote, you can just ask your Alexa device to change the channel for you.", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products","_id":"2"}} {"product": "TV", "brand": "Samsung", "model": "QE65Q700TA", "size": "65", "resolution": "8k", "type": "QLED", "price": 1799, "colour": "black", "energy_rating": "A+", "overview": "This outstanding 65-inch Samsung TV turns your living room into a home cinema with truly amazing tech. Its 8K QLED screen gives you an incredible razor-sharp picture bursting with ultra-realistic detail and bright, true-to-life colours. And the 8K quantum processor alongside clever 8K AI upscaling makes sure absolutely everything you watch reaches the same jaw-dropping quality, even if it\u2019s a golden oldie. Of course, it\u2019s a smart TV too, meaning you\u2019ll have tons of streaming apps and catch-up services to flick through once you connect it to the internet, including BT Sport. Plus, sound gets special treatment as well, with Adaptive Audio+ technology constantly scanning every scene to deliver the best experience possible.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"3"}} {"product": "TV", "brand": "Sony", "model": "KD65AG8BU", "size": "65", "resolution": "4k", "type": "OLED", "price": 1699, "colour": "black", "energy_rating": "A+", "overview": "Bring the cinema into your home with this 65-inch Sony Bravia OLED TV. With over 8 million self-illuminating pixels individually controlled by the X1 Extreme processor, images are upscaled for truer 4K HDR quality. OLED technology provides genuine black and sharp contrast, while the TRILUMINOS Display draws from a range of hues and intensifies colours for an incredible, lifelike picture. What\u2019s more, with Sound-from-Picture Reality\u2122 the sound is delivered from the entire screen, rather than from the back of the TV, so you\u2019ll hear the explosions and dialogue exactly where they originate from. And since it\u2019s powered by Android, you\u2019ll have access to a huge selection of streaming and catch-up services.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"4"}} {"product": "TV", "brand": "Sony", "model": "KD85XH8096BU", "size": "85", "resolution": "4k", "type": "smart tv", "price": 1899, "colour": "black", "energy_rating": "A+", "overview": "This 4K LED TV from Sony will make your takeaway night with friends that much better. Thanks to 4K X-Reality PRO tech, the picture in your wildlife documentaries or latest action film is sharpened and defined to fill everything with detail, so it\u2019ll feel like you\u2019re really in the middle of the action. All your scenes will pop with vibrant colour too, since the TRILUMINOS display uses a wide range of shades to paint your screen. When you\u2019re bored of flicking through the channels, Android TV lets you download catch-up and streaming apps, meaning you can log-in to your accounts and binge a new boxset. It\u2019ll sound amazing too, as the specially designed X-balanced speaker has a unique shape that\u2019s powerful and crisp without compromising on the thin design of the TV. And if you\u2019re not in the mood to click through the menus, you can control your TV by talking into the included remote.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"5"}} {"product": "TV", "brand": "LG", "model": "OLED65BX6LB", "size": "65", "resolution": "4k", "type": "smart tv", "price": 1599, "colour": "black", "energy_rating": "A+", "overview": "Upgrade your old telly with this 65-inch LG TV, featuring a 4K Ultra HD screen, for brilliant images at four times the resolution of Full HD. With an OLED display, the pixels give out their own light instead of being backlit, which means on top of incredible contrast, you get true blacks, as the pixels simply switch off. Plus, the \u03b17 Gen3 Intelligent Processor analyses your content and enhances the clarity and sharpness of the picture, as well as the sound. The audio features don\u2019t stop there \u2013 AI Sound tech uses spatial awareness to adjust the settings for the best listening experience. And it\u2019s smart, of course, so you can access streaming and catch-up services. What\u2019s more, you get NVIDIA\u00ae G-SYNC compatible support, so you\u2019ll get less lag and flicker on top of smoother gaming.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"6"}} {"product": "TV", "brand": "Panasonic", "model": "TX-65HX580BZ", "size": "65", "resolution": "4k", "type": "smart tv", "price": 639, "colour": "Black", "energy_rating": "A", "overview": "Whether you\u2019re a fan of the cricket or show up on the sofa each week to support your favourite football team, every big match will look amazing on this 65-inch Panasonic TV. The 4K Ultra HD resolution creates a sharp picture that\u2019s really detailed, so you\u2019ll be able to see every swing of the bat or kick of the ball in high quality. Plus, Dolby Vision creates rich depth and natural colours to bring the action to life, so you\u2019ll feel like you\u2019re sat in the stands. If it clashes with a show that someone else was wanting to watch, they can always play it later on the catch-up apps. And when you\u2019ve lost the remote, instead of flipping up all the cushions on the sofa, you can just ask Alexa to control the TV instead, since it connects to any existing Alexa speakers you have in the home.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"7"}} {"product": "TV", "brand": "Philips", "model": "65OLED805", "size": "65", "resolution": "4k", "type": "OLED", "price": 2199, "colour": "Grey", "energy_rating": "A+", "overview": "Enjoy spectacular performance and elegant design with this 65-inch Philips 4K TV. The Ultra HD OLED screen provides a wide viewing angle and delivers natural colours, strong contrast and true blacks. The Philips P5 processor with AI puts you at the heart of the action, delivering a picture bursting with lifelike detail, rich colour and fluid motion. And with Philips Ambilight, intelligent LEDs around the edge of the TV respond to the on-screen action and emit a captivating glow for a truly immersive experience. It works with Alexa, too \u2013 change channels, adjust the volume or turn on your gaming console just by asking. Plus, this Android TV lets you customise the home screen to display your favourite apps, so you can get access to the content you want faster.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"8"}} {"product": "TV", "brand": "Philips", "model": "24PFT5505", "size": "24", "resolution": "1920 x 1080", "type": "LED TV", "price": 149, "colour": "Black", "energy_rating": "A", "overview": "This 24-inch Philips LED TV is compact and light enough to set up almost anywhere. It has a VGA and 3.5mm audio input, meaning it can easily double as a computer monitor, while the two HDMI ports allow you to have both a set-top box and gaming console or Blu-ray player connected. You can even share music and videos from your phone on the TV thanks to the USB port. It looks amazing, too \u2013 with Full HD resolution for incredible, razor-sharp images, and you\u2019ll have plenty of free content to watch, because it has Freeview HD built in. What\u2019s more, it\u2019ll even turn off on its own if no one\u2019s using it.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"9"}} {"product": "TV", "brand": "TCL", "model": "50C715K", "size": "50", "resolution": "4K", "type": "smart tv", "price": 571, "colour": "Silver", "energy_rating": "A", "overview": "If you\u2019re looking for a feature-packed 4K TV that won\u2019t break the bank, then this one from TCL is the perfect choice. Measuring 50 inches, this Ultra HD LED TV has a Quantum Dot display, so images appear incredibly lifelike. Plus, with Dynamic Dolby Vision HDR, you\u2019ll enjoy superb contrast and vibrant colour. And there\u2019s more Dolby magic \u2013 it comes with Atmos\u00ae for clear, beautiful sound. What\u2019s more, this smart TV allows you to access streaming apps and catch up with your favourite shows, and you can even connect it to your Amazon Alexa or Google Assistant to control it with your voice.", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products","_id":"10"}} {"product": "TV", "brand": "Samsung", "model": "QE85Q80TA", "size": "85", "resolution": "4k", "type": "QLED", "price": 2999, "colour": "Black", "energy_rating": "A+", "overview": "Kit out your living room with this 85-inch Samsung TV and enjoy a ton of jaw-dropping features. The QLED screen uses tiny crystals that all give off light and colour, offering a breath-taking picture full of razor-sharp detail, with hues that appear as bright and lifelike as the filmmaker intended. Plus, when you stick on wildlife documentary, it\u2019ll look natural and realistic, as Dual LED tech perfectly balances warm and cool tones in the picture. You\u2019ll have no problem hearing Sir David over the echoes of the rainforest either, since this model amplifies voices to make sure you catch every word. And because it\u2019s a smart TV, you\u2019ll have access to plenty of streaming apps through your internet connection, including the BT Sport app. What\u2019s more, when you aren\u2019t watching anything, you can display photos or check the latest headlines with Ambient Mode+.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"11"}} {"product": "Fridge", "brand": "Haier", "model": "HRF-450DS6", "size": "447 litre", "resolution": "", "type": "American Fridge Freezer", "price": 527, "colour": "Silver", "energy_rating": "A+", "overview": "Keep your groceries deliciously fresh with this Haier American fridge freezer. Its 450 litre capacity can store 25 bags of food shopping, making it ideal for larger households. You\u2019ll never have to manually defrost again, as intelligent Total No Frost technology prevents ice building-up inside. Your food will always be kept in the very best conditions too, thanks to fantastic Multiflow technology, which circulates air evenly around the cabinet to keep the temperature consistent throughout. The fridge also has a Super Cool function which rapidly lowers the temperature, so new food added will always be stored in the ideal climate. ", "user_ratings": 4.9, "images": "images"} {"index":{"_index":"products","_id":"12"}} {"product": "Fridge", "brand": "Samsung", "model": "RB Combi Range RB29FSRNDSA", "size": "290 litre", "resolution": "", "type": "Frost Free Fridge Freezer", "price": 429, "colour": "Silver", "energy_rating": "A+", "overview": "This silver Samsung fridge freezer has lots of fantastic features to take excellent care of your food. With a 290 litre capacity, it can hold 16 bags packed with your favourite groceries. Clever All-Around Cooling technology in the fridge ensures fish stays fresh and vegetables keep their crunch, by circulating cool air to ensure an even temperature. When you\u2019re away from home, the holiday setting saves energy by keeping the freezer running while maintaining an even temperature in the fridge when it\u2019s empty, ensuring it stays free from odours. This model also has a handy wine rack that\u2019s perfect for keeping your favourite tipples secure.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"13"}} {"product": "Fridge", "brand": "Beko", "model": "CRFG3582W ", "size": "263 litre", "resolution": "", "type": "Frost Free Fridge Freezer", "price": 269, "colour": "White", "energy_rating": "A+", "overview": "Keep your ingredients for Sunday roasts and other recipes fresh for longer with this fridge freezer from Beko. It has a 263 litre capacity, which means it can hold 14 bags of food shopping. Thanks to its frost free technology, you never have to manually defrost again \u2013 cool air circulates to prevent icy build-ups. And the Salad Crisper drawer makes organising fruit and veg easy as pie for when you want a healthy snack. Also, the reversible doors can be installed to open from the right or left to suit your kitchen\u2019s layout.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"14"}} {"product": "Fridge", "brand": "Samsung", "model": "BRB260134WW", "size": "267 litre", "resolution": "", "type": "Frost Free Fridge Freezer", "price": 679, "colour": "White", "energy_rating": "A++", "overview": "With lots of clever features, this integrated fridge freezer from Samsung keeps your food fresher for longer. Its 267 litre capacity can hold 14 bags of food shopping, making it perfect for medium-sized households. It has All-Around Cooling too, which circulates cool air evenly throughout the fridge and freezer, so it keeps everything fresh. This model has SpaceMax Technology\u2122 as well, which means it has thinner walls, so there\u2019s even more space inside. It also has a salad crisper drawer, which helps keep your fruit and vegetables organised.", "user_ratings": 4.7, "images": ""} {"index":{"_index":"products","_id":"15"}} {"product": "Fridge", "brand": "Hisense", "model": "RS741N4WC11", "size": "562 litre", "resolution": "", "type": "American Fridge Freezer", "price": 649, "colour": "Stainless Steel Effect", "energy_rating": "A+", "overview": "For a stylish addition to your kitchen, look no further than this stainless steel American fridge freezer from Hisense. You can keep a healthy supply of your favourite treats, as its 562 litre capacity can hold up to 31 bags of food shopping. Total No Frost technology prevents icy build-ups forming inside, so it will never need manually defrosting. It even has a handy water dispenser, so you\u2019ll always have a deliciously chilled drink at hand. And the Holiday Setting is great when you\u2019re away for extended periods, as it keeps the freezer running normally while keeping a precise temperature in the fridge, saving you energy.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"16"}} {"product": "Fridge", "brand": "LG", "model": "GSL561PZUZ", "size": "591 Litre", "resolution": "", "type": "American Fridge Freezer", "price": 1149, "colour": "Stainless Steel Effect", "energy_rating": "A++", "overview": "You won\u2019t have to shop as often with this spacious American fridge freezer from LG. Thanks to its 591 litre capacity, there\u2019s more than enough room for 32 shopping bags filled with the weekly groceries. Total No Frost technology stops ice building up in the fridge and freezer, so you\u2019ll never have the tedious chore of defrosting it by hand either. Plus, if you\u2019re sick of fruits and vegetables losing their flavour quickly, this model\u2019s Moist Balance Crisper\u2122 drawer is the answer to your problems. It maintains the perfect level of humidity inside, helping everything stay fresher for longer. And, because it has a durable Inverter Linear Compressor, it\u2019s much more efficient and a lot quieter to run.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"17"}} {"product": "Fridge", "brand": "Bosch", "model": "Serie 6 KAD93VIFPG", "size": "533 Litre", "resolution": "", "type": "American Fridge Freezer", "price": 1649, "colour": "Stainless Steel Effect", "energy_rating": "A+", "overview": "This stainless steel effect freestanding American fridge freezer from Bosch is a perfect addition to your kitchen. With a spacious 533 litre capacity, it can hold 29 bags of delicious food and treats. You\u2019ll also enjoy never having to manually defrost it again thanks to its Frost Free technology. A fan circulates cool air to prevent ice build-ups from forming on the walls. And the Water and Ice Dispenser gives you fresh water and cubed ice on tap; it just needs a plumbing connection, which means you don\u2019t have to keep manually filling a tank. Plus, the FreshSense systems monitors and controls the temperature inside the fridge and freezer compartments, so that ingredients keep their freshness and flavour.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"18"}} {"product": "Fridge", "brand": "Swan", "model": "Retro SR11010BLN", "size": "208 litre", "resolution": "", "type": "Retro Fridge Freezer", "price": 449, "colour": "Blue", "energy_rating": "A+", "overview": "With its eye-catching retro design, this blue Swan fridge freezer is sure to make a statement in your kitchen. It has a 208 litre capacity, which means it can hold 11 bags of food shopping, and is ideal for stocking up on fresh groceries. It will need defrosting from time to time to keep it working efficiently, and it has an annual energy cost of just \u00a333.10, so it\u2019ll be kind to the environment and your wallet. It has a handy fast freeze function too, which helps to rapidly chill new groceries added to the freezer so all the goodness and flavour are quickly locked into your food.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"19"}} {"product": "Fridge", "brand": "Amica", "model": "FKR29653B", "size": "244 litre", "resolution": "", "type": "Retro Fridge Freezer", "price": 368, "colour": "Black", "energy_rating": "A+", "overview": "Add some retro flair to your kitchen with this stylish black fridge freezer from Amica. It has a 244 litre capacity which can hold up to 13 bags of food shopping \u2013 so it\u2019s ideal for stocking up on some BBQ essentials like burgers, sausages, and some veggie options too. The handy salad crisper drawer can keep all your fresh fruit and veg neat and organised as well, so they\u2019re always in easy reach when it\u2019s time to whip-up a side salad. The unique, vibrant design of this model is sure to be the talking point of any kitchen, and will just need manually defrosting every now and then to keep it working at its best.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"20"}} {"product": "Fridge", "brand": "LG", "model": "GBB72MCUFN", "size": "384 litre", "resolution": "", "type": "Frost Free Fridge Freezer", "price": 900, "colour": "Matte Black", "energy_rating": "A+++", "overview": "This frost free fridge freezer from LG will add style to any kitchen. It has a 384 litre capacity, giving you plenty of room to store up to 21 bags of groceries. The NatureFRESH\u2122 with DoorCooling+ ensures the whole fridge is evenly cooled too, as the cold air from the door keeps the air flow moving. There\u2019s even a fresh converter drawer for storing your meat and fish produce. So, whether you\u2019ve got a steak from the butchers or a nice fillet of mackerel, you can rest easy knowing they\u2019ll be kept at the perfect temperature. And thanks to the Inverter Linear Compressor, which uses brushless magnets instead of various moving parts, it\u2019s a lot quieter to run and much longer lasting too.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"21"}} {"product": "Fridge", "brand": "Amica", "model": "FKR29653B", "size": "244 litre", "resolution": "", "type": "Retro Fridge Freezer", "price": 368, "colour": "Black", "energy_rating": "A+", "overview": "Add some retro flair to your kitchen with this stylish black fridge freezer from Amica. It has a 244 litre capacity which can hold up to 13 bags of food shopping \u2013 so it\u2019s ideal for stocking up on some BBQ essentials like burgers, sausages, and some veggie options too. The handy salad crisper drawer can keep all your fresh fruit and veg neat and organised as well, so they\u2019re always in easy reach when it\u2019s time to whip-up a side salad. The unique, vibrant design of this model is sure to be the talking point of any kitchen, and will just need manually defrosting every now and then to keep it working at its best.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"22"}} {"product": "Fridge", "brand": "LG", "model": "GBB72MCUFN", "size": "384 litre", "resolution": "", "type": "Frost Free Fridge Freezer", "price": 900, "colour": "Matte Black", "energy_rating": "A+++", "overview": "This frost free fridge freezer from LG will add style to any kitchen. It has a 384 litre capacity, giving you plenty of room to store up to 21 bags of groceries. The NatureFRESH\u2122 with DoorCooling+ ensures the whole fridge is evenly cooled too, as the cold air from the door keeps the air flow moving. There\u2019s even a fresh converter drawer for storing your meat and fish produce. So, whether you\u2019ve got a steak from the butchers or a nice fillet of mackerel, you can rest easy knowing they\u2019ll be kept at the perfect temperature. And thanks to the Inverter Linear Compressor, which uses brushless magnets instead of various moving parts, it\u2019s a lot quieter to run and much longer lasting too.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"23"}} {"product": "Laptop", "brand": "Razer", "model": "Blade 15 Advanced", "size": "15.6", "resolution": "1920 x 1080", "type": "Gaming Laptop", "price": 2499, "colour": "Black", "energy_rating": "SSD - 1TB/16", "overview": "Face your enemies on the frontline with the awesome firepower of this Full HD Razer Blade 15 Advanced gaming laptop. When you need to go in all guns blazing, it\u2019s got a 10th generation Intel\u00ae Core\u2122 i7 octa core processor that\u2019s teamed up with 16GB of RAM to help you nail that big win. When the action\u2019s heating up on the screen, the innovative vapour chamber keeps everything cool and working at its best, so you can continue to crush your rivals with more power than ever before.\n\nYou\u2019ll be totally immersed in the absolutely breathtaking visuals and ultra-sharp details on offer from GeForce\u00ae RTX 2080 SUPER graphics card. Plus, you\u2019ll have space for a huge library on its 1TB SSD, which also gives you super-fast load times so you can dive straight in.", "user_ratings": 4.8, "images": "images"} {"index":{"_index":"products","_id":"24"}} {"product": "Laptop", "brand": "Lenovo", "model": "Legion 5 15ARH05", "size": "15.6", "resolution": "1920 x 1080", "type": "Gaming Laptop", "price": 779, "colour": "Phantom Black", "energy_rating": "SSD - 256GB/8", "overview": "Always have the edge over the competition with this gaming laptop from Lenovo. It has Legion Coldfront 2.0 technology, which makes sure it\u2019s only the action onscreen that heats up. And with a 256GB SSD, you\u2019ll have fast loading times and plenty of space for all your favourite titles too.\n\nPlus, the dedicated GeForce\u00ae GTX 1650 4GB graphics card will give you stunning visuals bursting with detail. And, with an AMD Ryzen 5 4600H hexa core processor as well as 8GB of RAM, you\u2019ll be able to keep on top of several tasks at once.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"25"}} {"product": "Laptop", "brand": "Apple", "model": "MacBook Pro with Touch Bar [2020]", "size": "13", "resolution": "2560x1600", "type": "MacBook", "price": 1380, "colour": "Space Grey", "energy_rating": "SSD - 512GB/8", "overview": "The Apple M1 chip redefines the 13-inch MacBook Pro. Featuring an 8-core CPU that flies through complex workflows in photography, coding, video editing and more. Incredible 8-core GPU that crushes graphics-intensive tasks and enables super-smooth gaming. An advanced 16-core Neural Engine for more machine learning power in your favourite apps. Superfast unified memory for fluid performance. And the longest-ever battery life in a Mac at up to 20 hours.2 It\u2019s Apple\u2019s most popular pro notebook. Even more performance and even more pro.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"26"}} {"product": "Laptop", "brand": "Apple", "model": "MacBook Air [2020]", "size": "13", "resolution": "2560x1600", "type": "MacBook", "price": 999, "colour": "Space Grey", "energy_rating": "SSD - 256GB/8", "overview": "Apple\u2019s thinnest and lightest notebook gets supercharged with the Apple M1 chip. Tackle your projects with the blazing-fast 8-core CPU. Take graphics-intensive apps and games to the next level with an up to 7-core GPU. And accelerate machine learning tasks with the 16-core Neural Engine. All with a silent, fanless design and the longest battery life ever \u2014 up to 18 hours.1 MacBook Air. Still perfectly portable. Just a lot more powerful.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"27"}} {"product": "Laptop", "brand": "Acer", "model": "Chromebook CB315-3HT", "size": "15.6", "resolution": "1920 x 1080", "type": "Chromebook", "price": 349, "colour": "Silver", "energy_rating": "SSD - 64GB/4", "overview": "Sail through the basics with this Acer Chromebook. It has a Google-powered operating system, which is not only easy to use but loads up this model quickly too, so you won\u2019t be waiting around to start your day. Plus, it also gives you access to millions of apps, while the built-in antivirus means you can browse online safely. And thanks to its 12-hour battery life, it\u2019s ideal for working on the go. It also comes with two years of free online storage with Google Drive, so you can save and edit all your files with an internet connection. And it has an Intel\u00ae Pentium\u00ae processor with 4GB of RAM, so you\u2019ll have no problem with light multitasking.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"28"}} {"product": "Laptop", "brand": "HP", "model": "Spectre x360 13-aw0057na", "size": "13.3", "resolution": "1920 x 1080", "type": "2-in-1 Laptop", "price": 1199, "colour": "Black", "energy_rating": "SSD - 256GB/8", "overview": "Tick off your daily checklist in style with this HP Spectre laptop. Its lightweight design and massive 19-hour battery life make it perfect for long stretches away from your desk, meaning you can set up anywhere you fancy. And it\u2019s easy to navigate between apps using the 13.3-inch Full HD touchscreen, which also makes photos and videos look clear and sharp. There\u2019s space for your files and music on the 256GB SSD, and the lightning-fast load times boots up everything really quickly. Plus, you\u2019ll have plenty of power for multitasking thanks to the combination of an Intel\u00ae Core\u2122 i5 processor alongside 8GB of RAM.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"29"}} {"product": "Laptop", "brand": "Asus", "model": "VivoBook Flip TM420IA", "size": "14", "resolution": "1920 x 1080", "type": "2-in-1 Laptop", "price": 499, "colour": "Black", "energy_rating": "SSD - 128GB/4", "overview": "This VivoBook Flip laptop from ASUS is a fantastic all-rounder that\u2019s great for both work and chilling out. With a lightweight design and 8-hour battery life, it\u2019s perfectly suited to catching up on emails and browsing social media. Everything will look really clear on the Full HD display, which doubles as an easy-to-use touchscreen that makes navigating between apps simple. Plus, it has a 128GB SSD for super-fast loading times, as well as plenty of space for files and music. All this is powered by an AMD Ryzen 3 processor alongside 4GB of RAM to easily tackle basic jobs, or even a bit of light multitasking.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"30"}} {"product": "Laptop", "brand": "HP", "model": "ENVY x360 13-ay0008na", "size": "13.3", "resolution": "1920 x 1080", "type": "UtraBook", "price": 799, "colour": "Black", "energy_rating": "SSD - 256GB/8", "overview": "This HP ENVY laptop has everything you need to power through your day. Its lightweight design and 11-hour battery life make it the ideal partner for travel, and it\u2019s great for getting away from your desk. The 13.3-inch Full HD touchscreen is easy to use and lets you navigate with your finger, while videos will look fantastic when you\u2019re relaxing after a long day. There\u2019s a 256GB SSD onboard too that speeds up loading times, as well as offering space for your files and photos. Plus, the combination of an AMD Ryzen 5 processor alongside 8GB of RAM means you\u2019ll have plenty of power for multitasking.", "user_ratings": 4.7, "images": ""} {"index":{"_index":"products","_id":"31"}} {"product": "Laptop", "brand": "Huawei", "model": "MateBook 13", "size": "13", "resolution": "2160 x 1440", "type": "MateBook", "price": 939, "colour": "Space Grey", "energy_rating": "SSD - 512GB/16", "overview": "Plough through demanding projects wherever you are with this powerful Huawei MateBook 13 laptop. You\u2019ll have no trouble getting a day\u2019s work done thanks to its 11-hour battery life, while the lightweight design makes it easy to set up shop anywhere you fancy. There\u2019s a 2K touchscreen that makes navigating with your finger a breeze, as well as offering a sharp view of videos and photos, which is great for editing. Its 512GB SSD offers plenty of storage for all your files and apps, and it\u2019ll boot up quickly when you\u2019re raring to jump back in. Plus, intensive multitasking is no problem at all for the Intel\u00ae Core\u2122 i7 processor and 16GB of RAM, meaning nothing will slow you down.", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products","_id":"32"}} {"product": "Laptop", "brand": "Lenovo", "model": "Yoga 7", "size": "14", "resolution": "1920 x 1080", "type": "UltraBook", "price": 799, "colour": "Slate", "energy_rating": "SSD - 256GB/8", "overview": "Work from home in style with this Lenovo Yoga 7 laptop. Its 16-hour battery life gives you plenty of charge to set up wherever you fancy, whether that\u2019s curled up on the sofa or out in the garden. Its 14-inch Full HD display offers a really clear view of whatever you\u2019re up to \u2013 perfect for binging your favourite shows after a long day at your desk. And it\u2019ll be up and running in next to no time thanks to its speedy 256GB SSD, which also has space for your files. Plus, the combo of an Intel\u00ae Core\u2122 i5 processor alongside 8GB of RAM lets you run loads of different apps at once, so you can stream some tunes while answering emails.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"33"}} {"product": "Laptop", "brand": "Lenovo", "model": "Yoga 7", "size": "14", "resolution": "1920 x 1080", "type": "UltraBook", "price": 799, "colour": "Slate", "energy_rating": "SSD - 256GB/8", "overview": "Work from home in style with this Lenovo Yoga 7 laptop. Its 16-hour battery life gives you plenty of charge to set up wherever you fancy, whether that\u2019s curled up on the sofa or out in the garden. Its 14-inch Full HD display offers a really clear view of whatever you\u2019re up to \u2013 perfect for binging your favourite shows after a long day at your desk. And it\u2019ll be up and running in next to no time thanks to its speedy 256GB SSD, which also has space for your files. Plus, the combo of an Intel\u00ae Core\u2122 i5 processor alongside 8GB of RAM lets you run loads of different apps at once, so you can stream some tunes while answering emails.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"34"}} {"product": "Desktop", "brand": "Lenovo", "model": "IdeaCentre 24ARE05", "size": "AMD Ryzen 5", "resolution": "AMD Radeon Graphics", "type": "All In One", "price": 549, "colour": "Black", "energy_rating": "HDD- 1TB/8", "overview": "If you\u2019re on the hunt for a brand new desktop, this all-in-one model from Lenovo is a great choice. It has an AMD Ryzen 5 processor which is teamed with 8GB of RAM, which means it\u2019ll deliver seamless multitasking without a hitch. You won\u2019t be short of storage space either thanks to the massive 1TB hard drive, and thanks to the Full HD screen, you\u2019ll always have a super-clear picture to work on. There\u2019s a wired keyboard and mouse included too, so your setup will be good to go in no time.", "user_ratings": 5, "images": "images"} {"index":{"_index":"products","_id":"35"}} {"product": "Desktop", "brand": "Acer", "model": "Aspire C24-963", "size": "Intel\u00ae Core\u2122 i5", "resolution": "intel uhd graphics 620", "type": "All In One", "price": 599, "colour": "Silver / Black", "energy_rating": "HDD- 1TB/8", "overview": "Give your home office an upgrade with this excellent Acer desktop. It has an AMD A9 processor which is teamed with 8GB of RAM, so it\u2019ll easily handle playing your favourite albums as you work on those essays. And with a 1TB hard drive and 256GB SSD, there\u2019s all the storage space you need for all your documents and files. Plus, the Full HD screen delivers a stunning, clear picture \u2013 perfect for watching films and boxsets when it\u2019s time for a break. It even comes with a wireless keyboard and mouse too, so you\u2019ll be good to go in no time.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"36"}} {"product": "Desktop", "brand": "Acer", "model": "Nitro N50-610", "size": "Intel\u00ae Core\u2122 i5", "resolution": "Nvidia GeForce GTX 1650", "type": "Gaming Tower", "price": 749, "colour": "Black / Red", "energy_rating": "HDD- 1TB/8", "overview": "Raise your game with this fantastic gaming desktop from Acer. Every exciting moment will be brought to life in amazing detail with the dedicated GeForce\u00ae GTX 1650 graphics card. And thanks to the fan cooling system, only the on-screen action heats up to give you an improved performance.\n\nAll your favourite titles will run smoothly with the 10th gen Intel\u00ae Core\u2122 i5 processor which is teamed with 8GB of RAM. There\u2019s tons of storage space too with the 1TB hard drive, giving you plenty of space for your collection.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"37"}} {"product": "Desktop", "brand": "Lenovo", "model": "IdeaCentre 3 Tower", "size": "AMD Ryzen 3", "resolution": "AMD Radeon Graphics", "type": "Tower", "price": 329, "colour": "Mineral Grey", "energy_rating": "HDD- 1TB/4", "overview": "If you\u2019re looking for a new family desktop, then this Lenovo IdeaCentre all-in-one model is a brilliant choice. With an AMD Ryzen 3 processor and 4GB of RAM, it has all the power you need for day-to-day use and basic multitasking. And the large 1TB hard drive gives you plenty of space to store everyone\u2019s files, photos and music. You can also hook up lots of different devices thanks to its 8 USB ports, meaning you won\u2019t have to unplug something if you want to pop some tunes on your phone. This model also comes with a wireless keyboard and mouse, so you\u2019ll have everything you need to get going straight out of the box.", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products","_id":"38"}} {"product": "Desktop", "brand": "MSI", "model": "MAG Infinite S 10SI-052UK", "size": "Intel\u00ae Core\u2122 i5", "resolution": "Nvidia GeForce GTX 1660 SUPER", "type": "Gaming Tower", "price": 799, "colour": "Black", "energy_rating": "SSD - 512GB/8", "overview": "Push the boundaries with this Infinite S gaming desktop from MSI. Whether you\u2019ve been captured over on enemy lines or you\u2019re fighting the final boss, the cooling fans prevent it from overheating, so it can always give its best performance. And, thanks to the GeForce\u00ae GTX 1660 SUPER graphics card, you\u2019ll dive deeper into your games, as you explore the beautifully clear visuals.\n\nInside, there\u2019s also a 10th gen Intel\u00ae Core\u2122 i5-10400F processor, which works with 8GB of RAM to handle all your games smoothly. Plus, you\u2019ll have room to store your collection on the 512GB SSD, which also offers super-fast loading times so you can jump straight into a new adventure.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"39"}} {"product": "Desktop", "brand": "Apple", "model": "iMac 5K 27\" iMac 2020", "size": "Intel\u00ae Core\u2122 i5", "resolution": "AMD Radeon Pro 5300", "type": "iMac", "price": 1799, "colour": "Silver", "energy_rating": "SSD - 256GB/8", "overview": "The 27-inch iMac now comes packed with the latest processors, faster memory, powerful graphics and ultra-fast SSD storage. And the gorgeous Retina 5K display is better than ever with True Tone technology and optional nano-texture glass. With macOS and all its built-in apps, the 27-inch iMac is the total creative package\u2014powered up.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"40"}} {"product": "Desktop", "brand": "Apple", "model": "Mac Mini Mac Mini 2020", "size": "Intel\u00ae Core\u2122 i5", "resolution": "Intel\u00ae UHD Graphics 630", "type": "Mac mini", "price": 1099, "colour": "Space Grey\n", "energy_rating": "SSD - 512GB/8", "overview": "Eighth-generation 6-core and quad-core processors. Fast 2666MHz DDR4 memory. A variety of ports, including Thunderbolt 3, HDMI 2.0 and available 10Gb Ethernet.* And all-flash storage that\u2019s incredibly fast, so you can load giant files and launch apps in an instant. The re-engineered Mac mini is the best performing yet. Ready for the desktop. And beyond.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"41"}} {"product": "Desktop", "brand": "HP", "model": "Omen 25L", "size": "Intel Core i5-10xxx", "resolution": "Nvidia GeForce RTX\u2122 2060", "type": "Tower", "price": 1049, "colour": "Black", "energy_rating": "HDD - 2TB/16", "overview": "Level up your experience and make the leap to PC gaming with this HP OMEN desktop. It\u2019s loaded with a GeForce\u00ae RTX 2060 6GB VRAM graphics card that\u2019ll pack your screen with outstanding special effects and immersive visuals. Next up, the 10th generation Intel\u00ae Core\u2122 i5-10400F processor, alongside 16GB of RAM, can easily handle all your favourite titles, giving you smooth gameplay.\n\nYou\u2019ll have tons of storage space ready to fill up with a huge library of blockbusters thanks to its 2TB hard drive, while the extra 256GB SSD loads up apps at lightning speed \u2013 so no more waiting around to grab some high scores. Plus, you can personalise its look and really show off your awesome hardware, since it comes with customisable RGB lighting.", "user_ratings": 4.7, "images": ""} {"index":{"_index":"products","_id":"42"}} {"product": "Desktop", "brand": "HP", "model": "Pavilion Tower", "size": "Intel Core i5-10xxx", "resolution": "Nvidia GeForce\u00ae GTX 1660 SUPER", "type": "Tower", "price": 849, "colour": "Black", "energy_rating": "HDD- 1TB/8", "overview": "This HP Pavilion desktop has some great tech that\u2019ll kick-start your PC gaming career. You\u2019ll step into a whole new world of immersive visuals and special effects that\u2019ll pull you into the action thanks to its GeForce\u00ae GTX 1660 SUPER 6GB VRAM graphics card. And it\u2019ll fire up your favourite titles no problem, since its 10th generation Intel\u00ae Core\u2122 i5-10400F processor and 8GB of processor give you really smooth gameplay.\n\nYou won\u2019t have to worry about running out of storage either, as it\u2019s equipped with a 1TB hard drive, plus an extra 256GB SSD that speeds up load times. Plus, you can have your mouse, keyboard and a controller all plugged in at the same time with the 4 high-speed USB ports, so there\u2019s no need to keep swapping things around all the time.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"43"}} {"product": "Desktop", "brand": "Lenovo", "model": "IdeaCentre G5 14IMB05", "size": "Intel\u00ae Core\u2122 i3", "resolution": "NVidia GeForce GTX 1650 SUPER", "type": "Gaming Tower", "price": 649, "colour": "Black", "energy_rating": "SSD - 512GB/8", "overview": "Take your first steps into the world of PC gaming with this Lenovo IdeaCentre G5i desktop. You\u2019ll enjoy adventures through lush new realms, full of sharp detail and awesome special effects, thanks to its GeForce GTX 1650 SUPER graphics card. And the combination of a 10th generation Intel\u00ae Core\u2122 i3 processor alongside 8GB of RAM makes sure the action is really smooth, giving you a seamless experience.\n\nYou\u2019ll even be able to dive straight in with the speedy 512GB SSD, which also offers lots of storage for your favourite titles. Plus, it\u2019s got 7 USB ports for plugging in all your bits and pieces at the same time \u2013 perfect for keeping a controller handy without having to disconnect your keyboard or mouse.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"44"}} {"product": "Desktop", "brand": "Lenovo", "model": "IdeaCentre G5 14IMB05", "size": "Intel\u00ae Core\u2122 i3", "resolution": "NVidia GeForce GTX 1650 SUPER", "type": "Gaming Tower", "price": 649, "colour": "Black", "energy_rating": "SSD - 512GB/8", "overview": "Take your first steps into the world of PC gaming with this Lenovo IdeaCentre G5i desktop. You\u2019ll enjoy adventures through lush new realms, full of sharp detail and awesome special effects, thanks to its GeForce GTX 1650 SUPER graphics card. And the combination of a 10th generation Intel\u00ae Core\u2122 i3 processor alongside 8GB of RAM makes sure the action is really smooth, giving you a seamless experience.\n\nYou\u2019ll even be able to dive straight in with the speedy 512GB SSD, which also offers lots of storage for your favourite titles. Plus, it\u2019s got 7 USB ports for plugging in all your bits and pieces at the same time \u2013 perfect for keeping a controller handy without having to disconnect your keyboard or mouse.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"45"}} {"product": "Tablet", "brand": "Apple", "model": "iPad Mini 5th Generation", "size": "7.9", "resolution": "2048 x 1536", "type": "iPad", "price": 384, "colour": "Gold", "energy_rating": "64GB/2", "overview": "The beloved 7.9-inch iPad mini is more capable than ever.1 It features the A12 Bionic chip with Neural Engine, which uses real-time machine learning to transform the way you experience photos, gaming, augmented reality (AR), and more. A beautiful Retina display with True Tone for easier viewing in all kinds of lighting environments. Support for Apple Pencil.2 Wi-Fi and Gigabit-class LTE.3 An 8MP back camera and 7MP FaceTime HD camera. As well as all-day battery life,4 Touch ID and Apple Pay, and over a million iPad apps on the App Store\u2014in an iPad that fits in one hand.", "user_ratings": 5, "images": "images"} {"index":{"_index":"products","_id":"46"}} {"product": "Tablet", "brand": "Apple", "model": "iPad 8th Generation", "size": "10.2", "resolution": "2160 x 1620", "type": "iPad", "price": 429, "colour": "Silver", "energy_rating": "128GB/4", "overview": "The new iPad. It\u2019s your digital notebook, mobile office, photo studio, game console and personal cinema. With the A12 Bionic chip that can easily power essential apps and immersive games. So you can edit a document while researching on the web and making a FaceTime call to a colleague at the same time. Apple Pencil makes note-taking with iPad a breeze. Attach a full\u2011size Smart Keyboard for comfortable typing. And go further with Wi-Fi and 4G LTE Advanced and all-day battery life.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"47"}} {"product": "Tablet", "brand": "Apple", "model": "iPad Air [4th Generation]", "size": "10.9", "resolution": "2360 x 1640", "type": "iPad", "price": 556, "colour": "Sky Blue", "energy_rating": "64GB/4", "overview": "The all-new iPad Air. It\u2019s more versatile than ever. The stunning 10.9-inch Liquid Retina display with wide colour lets you see photos, videos and games in vivid, true-to-life detail.1 It features the A14 Bionic chip with Neural Engine, delivering power and advanced machine learning capabilities to edit a 4K video, create a beautiful presentation, design a 3D model, and do all of these things with ease. And now with support for Magic Keyboard and Apple Pencil (2nd generation),2 fast, easy and secure Touch ID and Apple Pay, a 12MP back camera and 7MP FaceTime HD camera, USB-C connector for charging and accessories, all-day battery life,3 fast Wi-Fi 6 and 4G LTE Advanced.4 With iPad Air you have the power to bring your ideas to life.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"48"}} {"product": "Tablet", "brand": "Apple", "model": "iPad Pro 4th Generation", "size": "12.9", "resolution": "2732 x 2048", "type": "iPad", "price": 912, "colour": "Space Grey", "energy_rating": "128GB/6", "overview": "The 12.9-inch iPad Pro features an immersive, edge-to-edge Liquid Retina display.1The new pro cameras, Wide and new Ultra Wide, combined with the all-new LiDAR scanner enable entirely new experiences in the next generation of augmented reality (AR) apps. A12Z Bionic chip for powering essential apps and graphics-intensive games. Support for the new Magic Keyboard with trackpad2 and Apple Pencil.2 Faster Wi-Fi and 4G LTE Advanced.3 All-day battery life.4 And access to millions of apps on the App Store to transform iPad Pro into anything you need, anywhere you need it.", "user_ratings": 5, "images": ""} {"index":{"_index":"products","_id":"49"}} {"product": "Tablet", "brand": "Samsung", "model": "Galaxy Tab S7", "size": "11", "resolution": "2560 x 1600", "type": "Wifi Tablet", "price": 619, "colour": "Mystic Black", "energy_rating": "128GB/6", "overview": "Enjoy a world of entertainment with this mystic black tablet from Samsung. The Android 10 operating system gives you access to loads of cool apps and games, which will all look amazing on the Quad HD screen. It also has 128GB of storage, so you\u2019ll have plenty of space for your photos and videos, and you\u2019ll be able to play your favourite games all day thanks to the 15-hour battery life. Plus, you can take fantastic snaps with the 13MP rear camera. And it even comes with a Samsung S Pen, which is great for making quick notes and sketches.", "user_ratings": 4.9, "images": ""} {"index":{"_index":"products","_id":"50"}} {"product": "Tablet", "brand": "Samsung", "model": "Galaxy Tab A7", "size": "10.36", "resolution": "1200 x 2000", "type": "Wifi Tablet", "price": 179, "colour": "Grey", "energy_rating": "31GB/3", "overview": "Keep everyone entertained with this grey Galaxy Tab A7 from Samsung. It uses the Android 10 operating system, so you\u2019ll have loads of apps and games on hand to keep you distracted from the hustle and bustle around you. Everything will look amazing too, thanks to the stunning 10.3-inch WUXGA display that\u2019ll keep you in the thick of the action. Plus, the 32GB of storage gives you plenty of space for your files. It even has an 8MP rear camera to capture all those cherished moments in stunning detail. And it\u2019s Bluetooth enabled, which is ideal if you want to connect wireless headphones to catch up on that must-see boxset on the commute.", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products","_id":"51"}} {"product": "Tablet", "brand": "Amazon", "model": "Fire", "size": "7", "resolution": "1024 x 600", "type": "Wifi Tablet", "price": 34, "colour": "Plum", "energy_rating": "16GB/1", "overview": "Keep the whole clan entertained with this plum Amazon Fire 7 tablet. With the clever Fire OS 5 installed, you\u2019ll have all the latest apps at your fingertips. It also has an HD screen for great picture quality, so your videos will look crystal clear. And with 16GB of storage, you\u2019ll have plenty of space to store everything from Angry Birds to holiday snaps. Plus, you can use the 2 megapixel rear camera to capture those cherished moments to share with friends. It even has Alexa Assistant, which you can use to ask questions and set reminders, or view your smart home cameras and doorbells.", "user_ratings": 4.8, "images": ""} {"index":{"_index":"products","_id":"52"}} {"product": "Tablet", "brand": "Lenovo", "model": "Smart Tab", "size": "10.1", "resolution": "1920 x 1200", "type": "Wifi Tablet", "price": 179, "colour": "Grey", "energy_rating": "32GB/3", "overview": "This grey Lenovo Yoga Smart Tab tablet has loads of great features to keep you entertained. It runs on the Android 9.0 Pie operating system, giving you access to thousands of cool apps and making it easier to navigate using gestures. The 11-hour battery life means you\u2019ll have plenty of charge to binge movies or TV shows, which\u2019ll look fantastic on its 10.1-inch Full HD screen. There\u2019s also space for music, photos and videos with its 32GB storage, while the 8MP rear camera takes fantastic snaps to share with all your friends. You\u2019ll also find Google Assistant built-in, letting you ask questions, set reminders and more using your voice.", "user_ratings": 4.6, "images": ""} {"index":{"_index":"products","_id":"53"}} {"product": "Tablet", "brand": "Lenovo", "model": "Tab M10 Plus", "size": "10.3", "resolution": "1920 x 1200", "type": "Wifi Tablet", "price": 179, "colour": "Grey", "energy_rating": "64GB/4", "overview": "A true helper, the Tab M10 Plus from Lenovo is always ready to give you a hand. As it runs on Android 9 Pie, you’ll have access to anything from social and shopping apps, to banking apps to help out with your finances. And when you’ve got your hands full with the kids, you can use its voice controls and ask Google to check the weather or set a reminder for tomorrow’s play date, before you rush them out the door. Plus, it’s got a fabulous 10.3-inch Full HD+ display and Dolby Atmos sound tech, so it’s great for getting under the covers and watching a film, as it shows off all the action in brilliant detail. You won’t have to worry about it cutting out mid-scene either, since it comes with a 9-hour battery life, while the 64GB of storage gives you room for all your downloads. What’s more, when you’ve been busy DIY-ing and upcycling, you can snap a pic and proudly show it off to the world with the 8MP camera.","user_ratings": 4.8, "images": ""} ================================================ FILE: datasets/products2.txt ================================================ PUT _bulk {"index":{"_index":"products2","_id":"1"}} {"product": "TV", "brand": "Samsung", "model": "UE75TU7020", "size": "75", "resolution": "4k", "type": "smart tv", "price": 799, "colour": "silver", "energy_rating": "A+", "overview": "Amazing 75-inch Samsung smart TV. The incredibly sharp 4K Ultra HD display shows off everything in breathtaking quality, with bright, lifelike colours truly immersing you in the action.","tech_spec":"smart tv;4k ultra hd;2 years warranty", "user_ratings": 4.5, "images": ""} {"index":{"_index":"products2","_id":"2"}} {"product": "TV", "brand": "Samsung", "model": "QE65Q700TA", "size": "65", "resolution": "8k", "type": "QLED", "price": 1799, "colour": "black", "energy_rating": "A+", "overview": "This outstanding 65-inch Samsung TV turns your living room into a home cinema with truly amazing tech. Its 8K QLED screen gives you an incredible razor-sharp picture bursting with ultra-realistic detail and bright, true-to-life colours.Of course, it's a smart TV too,", "tech_spec":"smart tv;8k QLED GD;3 years warranty", "user_ratings": 5, "images": ""} {"index":{"_index":"products2","_id":"3"}} {"product": "TV", "brand": "Sony", "model": "KD65AG8BU", "size": "65", "resolution": "4k", "type": "OLED", "price": 1699, "colour": "black", "energy_rating": "A+", "overview": "Bring the cinema into your home with this 65-inch Sony Bravia OLED TV. Images are upscaled for truer 4K HDR quality. OLED technology provides genuine black and sharp contrast", "tech_spec":"smart tv;OLED hd;5 years warranty", "user_ratings": 4.8, "images": ""} ================================================ FILE: datasets/products_mapping.txt ================================================ PUT products { "mappings": { "properties": { "brand": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "colour": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "energy_rating": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "images": { "type": "text" }, "model": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "overview": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "price": { "type": "double" }, "product": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "resolution": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "size": { "type": "text" }, "type": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "user_ratings": { "type": "double" } } } } ================================================ FILE: datasets/restaurants.txt ================================================ # Create a mapping for restaurants PUT restaurants { "mappings": { "properties": { "name":{ "type": "text" }, "town_centre":{ "type": "geo_point" }, "location":{ "type": "geo_point" }, "category":{ "type":"text" }, "hygenie_rating":{ "type": "short" }, "borough":{ "type":"text" } } } } ================================================ FILE: datasets/three-books-kibana.txt ================================================ PUT books/_doc/1 { "title":"Effective Java", "author":"Joshua Bloch", "release_date":"2001-06-01", "amazon_rating":4.7, "best_seller":true, "prices": { "usd":9.95, "gbp":7.95, "eur":8.95 } } PUT books/_doc/2 { "title":"Core Java Volume I - Fundamentals", "author":"Cay S. Horstmann", "release_date":"2018-08-27", "amazon_rating":4.8, "best_seller":true, "prices": { "usd":19.95, "gbp":17.95, "eur":18.95 } } PUT books/_doc/3 { "title":"Java: A Beginner’s Guide", "author":"Herbert Schildt", "release_date":"2018-11-20", "amazon_rating":4.2, "best_seller":true, "prices": { "usd":19.99, "gbp":19.99, "eur":19.99 } } ================================================ FILE: datasets/top-movies-kibana.txt ================================================ POST _bulk {"index":{"_index":"movies","_id":"1"}} {"title": "The Shawshank Redemption","synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.","actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"] ,"director":" Frank Darabont ","rating":"9.3","certificate":"R","genre": "Drama "} {"index":{"_index":"movies","_id":"2"}} {"title": "The Godfather","synopsis": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.","actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.2","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"3"}} {"title": "The Dark Knight","synopsis": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","actors": ["Christian Bale", "Heath Ledger", "Aaron Eckhart", "Michael Caine"] ,"director":" Christopher Nolan ","rating":"9.0","certificate":"PG-13","genre": ["Action", "Crime", "Drama"] } {"index":{"_index":"movies","_id":"4"}} {"title": "The Godfather: Part II","synopsis": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.","actors": ["Al Pacino", "Robert De Niro", "Robert Duvall", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.0","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"5"}} {"title": "12 Angry Men","synopsis": "A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.","actors": ["Henry Fonda", "Lee J. Cobb", "Martin Balsam", " John Fiedler"] ,"director":" Sidney Lumet ","rating":"9.0","certificate":"Approved","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"6"}} {"title": "The Lord of the Rings: The Return of the King","synopsis": "Gandalf and Aragorn lead the World of Men against Saurons's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.","actors": ["Elijah Wood", "Viggo Mortensen", "Ian McKellen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.9","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"7"}} {"title": "Pulp Fiction","synopsis": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.","actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson", "Bruce Willis"] ,"director":" Quentin Tarantino ","rating":"8.9","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"8"}} {"title": "Schindler's List","synopsis": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.","actors": ["Liam Neeson", "Ralph Fiennes", "Ben Kingsley", "Caroline Goodall"] ,"director":" Steven Spielberg ","rating":"8.9","certificate":"R","genre": ["Biography", "Drama", "History"] } {"index":{"_index":"movies","_id":"9"}} {"title": "Inception","synopsis": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.","actors": ["Leonardo DiCaprio", "Joseph Gordon-Levitt", "Elliot Page", "Ken Watanabe"] ,"director":" Christopher Nolan ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Sci-Fi"] } {"index":{"_index":"movies","_id":"10"}} {"title": "Fight Club","synopsis": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.","actors": ["Brad Pitt", "Edward Norton", "Meat Loaf", "Zach Grenier"] ,"director":" David Fincher ","rating":"8.8","certificate":"R","genre": "Drama"} {"index":{"_index":"movies","_id":"11"}} {"title": "The Lord of the Rings: The Fellowship of the Ring","synopsis": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.","actors": ["Elijah Wood", "Ian McKellen", "Orlando Bloom", "Sean Bean"] ,"director":" Peter Jackson ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"12"}} {"title": "Forrest Gump","synopsis": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.","actors": ["Tom Hanks", "Robin Wright", "Gary Sinise", "Sally Field"] ,"director":" Robert Zemeckis ","rating":"8.8","certificate":"PG-13","genre": ["Drama", "Romance"] } {"index":{"_index":"movies","_id":"13"}} {"title": "The Good, the Bad and the Ugly","synopsis": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.","actors": ["Clint Eastwood", "Eli Wallach", "Lee Van Cleef", "Aldo Giuffrè"] ,"director":" Sergio Leone ","rating":"8.8","certificate":"R","genre": "Western"} {"index":{"_index":"movies","_id":"14"}} {"title": "The Lord of the Rings: The Two Towers","synopsis": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.","actors": ["Elijah Wood", "Ian McKellen", "Viggo Mortensen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"]} {"index":{"_index":"movies","_id":"15"}} {"title": "The Matrix","synopsis": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.","actors": ["Keanu Reeves", "Laurence Fishburne", "Carrie-Anne Moss", "Hugo Weaving"] ,"director":["Lana Wachowski", "Lilly Wachowski"] ,"rating":"8.7","certificate":"R","genre": ["Action", "Sci-Fi"] } {"index":{"_index":"movies","_id":"16"}} {"title": "Goodfellas","synopsis": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.","actors": ["Robert De Niro", "Ray Liotta", "Joe Pesci", "Lorraine Bracco"] ,"director":" Martin Scorsese ","rating":"8.7","certificate":"R","genre": ["Biography", "Drama", "Crime"] } {"index":{"_index":"movies","_id":"17"}} {"title": "Star Wars: Episode V - The Empire Strikes Back","synopsis": "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.","actors": ["Mark Hamill", "Harrison Ford", "Carrie Fisher", "Billy Dee Williams"] ,"director":" Irvin Kershner ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Fantasy"] } {"index":{"_index":"movies","_id":"18"}} {"title": "One Flew Over the Cuckoo's Nest","synopsis": "A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.","actors": ["Jack Nicholson", "Louise Fletcher", "Michael Berryman", "Peter Brocco"] ,"director":" Milos Forman ","rating":"8.7","certificate":"R","genre": "Drama" } {"index":{"_index":"movies","_id":"19"}} {"title": "Parasite","synopsis": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.","actors": ["Kang-ho Song", "Sun-kyun Lee", "Yeo-jeong Cho", "Woo-sik Choi"] ,"director":" Bong Joon Ho ","rating":"8.6","certificate":"R","genre": ["Comedy", "Drama", "Thriller"] } {"index":{"_index":"movies","_id":"20"}} {"title": "Interstellar","synopsis": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.","actors": ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Mackenzie Foy"] ,"director":" Christopher Nolan ","rating":"8.6","certificate":"PG-13","genre": ["Adventure", "Drama", "Sci-Fi"] } {"index":{"_index":"movies","_id":"21"}} {"title": "City of God","synopsis": "In the slums of Rio, two kids paths diverge as one struggles to become a photographer and the other a kingpin.","actors": ["Alexandre Rodrigues", "Leandro Firmino", "Matheus Nachtergaele", "Phellipe Haagensen"] ,"director": ["Fernando Meirelles", "Kátia Lund"] ,"rating":"8.6","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"22"}} {"title": "Spirited Away","synopsis": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.","actors": ["Daveigh Chase", "Suzanne Pleshette", "Miyu Irino", "Rumi Hiiragi"] ,"director":" Hayao Miyazaki ","rating":"8.6","certificate":"PG-13","genre": ["Animation", "Adventure", "Family"]} {"index":{"_index":"movies","_id":"23"}} {"title": "Saving Private Ryan","synopsis": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.","actors": ["Tom Hanks", "Matt Damon", "Tom Sizemore", "Edward Burns"] ,"director":" Steven Spielberg ","rating":"8.6","certificate":"R","genre": ["Drama", "War"] } {"index":{"_index":"movies","_id":"24"}} {"title": "The Green Mile","synopsis": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.","actors": ["Tom Hanks", "Michael Clarke Duncan", "David Morse", "Bonnie Hunt"] ,"director":" Frank Darabont ","rating":"8.6","certificate":"R","genre": ["Crime", "Drama", "Fantasy"] } {"index":{"_index":"movies","_id":"25"}} {"title": "Life Is Beautiful","synopsis": "When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.","actors": ["Roberto Benigni", "Nicoletta Braschi", "Giorgio Cantarini", "Giustino Durano"] ,"director":" Roberto Benigni ","rating":"8.6","certificate":"PG-13","genre": ["Comedy", "Drama", "Romance"]} ================================================ FILE: datasets/tv_sales.txt ================================================ PUT tv_sales/_bulk {"index":{"_id":"1"}} {"brand": "Samsung","name":"UHD TV","size_inches":65,"price_gbp":1400,"sales":17} {"index":{"_id":"2"}} {"brand":"Samsung","name":"UHD TV","size_inches":45,"price_gbp":1000,"sales":11} {"index":{"_id":"3"}} {"brand":"Samsung","name":"UHD TV","size_inches":23,"price_gbp":999,"sales":14} {"index":{"_id":"4"}} {"brand":"LG","name":"8K TV","size_inches":65,"price_gbp":1499,"sales":13} {"index":{"_id":"5"}} { "brand":"LG","name":"4K TV","size_inches":55,"price_gbp":1100,"sales":31} {"index":{"_id":"6"}} {"brand":"Philips","name":"8K TV","size_inches":65,"price_gbp":1800,"sales":23} {"index":{"_id":"7"}} {"brand":"Philips","name":"8K TV","size_inches":65,"price_gbp":2000,"sales":23} {"index":{"_id":"9"}} {"brand":"LG","name":"8K TV","size_inches":75,"price_gbp":2000,"sales":48,"best_seller":true} {"index":{"_id":"10"}} {"brand":"Panasonic", "name":"4K TV","size_inches":75,"price_gbp":2200,"sales":14,"best_seller":false} ================================================ FILE: datasets/vector-search-sample.json ================================================ [ { "title": "Core Java Volume I – Fundamentals" }, { "title": "Effective Java" }, { "title": "Java: A Beginner’s Guid" }, { "title": "Java - The Complete Reference" }, { "title": "Head First Java" }, { "title": "Kibana 4 Video Tutorials, Part 3" }, { "title": "Keeping up with Kibana: This week in Kibana for November 29th, 2019" }, { "title": "London Bridge" } ] ================================================ FILE: docker/7.15.1_es_kibana.yml ================================================ version: '3' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:7.15.1 container_name: elasticsearch-in-action-7.15.1 environment: - node.name=node1 - cluster.name=elasticsearch-in-action - discovery.type=single-node - bootstrap.memory_lock=true - path.repo=/usr/share/elasticsearch/backups - ES_JAVA_OPTS=-Xms512m -Xmx512m ulimits: memlock: soft: -1 hard: -1 volumes: - node1-data:/usr/share/elasticsearch/data ports: - 9200:9200 networks: - elasticsearch-in-action kibana: image: docker.elastic.co/kibana/kibana:7.15.1 container_name: kibana-7.15.1 environment: - elasticsearch.url=http://elasticsearch:9200 ulimits: memlock: soft: -1 hard: -1 ports: - 5601:5601 networks: - elasticsearch-in-action depends_on: - elasticsearch volumes: node1-data: driver: local networks: elasticsearch-in-action: ================================================ FILE: docker/elasticsearch-docker-8-1-2.yml ================================================ version: '3' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:8.1.2 container_name: elasticsearch-in-action-8.1.2 environment: - node.name=node1 - cluster.name=elasticsearch-in-action - discovery.type=single-node - bootstrap.memory_lock=true - xpack.security.enabled=false - path.repo=/usr/share/elasticsearch/backups - ES_JAVA_OPTS=-Xms512m -Xmx512m ulimits: memlock: soft: -1 hard: -1 volumes: - node1-data:/usr/share/elasticsearch/data ports: - 9200:9200 networks: - elasticsearch-in-action kibana: image: docker.elastic.co/kibana/kibana:8.1.2 container_name: kibana-in-action-8.1.2 environment: - elasticsearch.url=http://elasticsearch:9200 - csp.strict=false ulimits: memlock: soft: -1 hard: -1 ports: - 5601:5601 networks: - elasticsearch-in-action depends_on: - elasticsearch volumes: node1-data: driver: local networks: elasticsearch-in-action: ================================================ FILE: docker/elasticsearch-docker-8-6-2.yml ================================================ version: '3' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:8.6.2 container_name: elasticsearch-in-action-8.6.2 environment: - node.name=node1 - cluster.name=elasticsearch-in-action - discovery.type=single-node - bootstrap.memory_lock=true - xpack.security.enabled=false - path.repo=/usr/share/elasticsearch/backups - ES_JAVA_OPTS=-Xms512m -Xmx512m ulimits: memlock: soft: -1 hard: -1 volumes: - node1-data:/usr/share/elasticsearch/data ports: - 9200:9200 networks: - elasticsearch-in-action kibana: image: docker.elastic.co/kibana/kibana:8.6.2 container_name: kibana-in-action-8.6.2 environment: - elasticsearch.url=http://elasticsearch:9200 - csp.strict=false ulimits: memlock: soft: -1 hard: -1 ports: - 5601:5601 networks: - elasticsearch-in-action depends_on: - elasticsearch volumes: node1-data: driver: local networks: elasticsearch-in-action: ================================================ FILE: docker/one_node_es.yml ================================================ #One node elasticsearch ================================================ FILE: docker/one_node_kibana.yml ================================================ ================================================ FILE: kibana_scripts/appendix_ingest_pipelines.txt ================================================ # Ingest Pipelines # Create a pipeline that stamps incoming data with an additional field "confidential" PUT _ingest/pipeline/confidential_files_pipeline { "description": "Stamp confidential on the file (document)", "processors": [ { "set": { "field": "category", "value": "confidential" } } ] } POST _ingest/pipeline/confidential_files_pipeline/_simulate { "docs": [ { "_source": { "op_name": "Operation Cobra" } } ] } # Adding another processor to uppercase the newly created field: PUT _ingest/pipeline/confidential_files_pipeline { "description": "Stamp confidential on the file (document)", "processors": [ { "set": { "field": "category", "value": "confidential" }, "uppercase": { "field": "category" } } ] } # Testing the modified pipeline second time POST _ingest/pipeline/confidential_files_pipeline/_simulate { "docs": [ { "_source": { "op_name": "Operation Cobra" } } ] } # Create a pipeline that stamps incoming data with an additional field "confidential" PUT _ingest/pipeline/confidential_pdf_files_pipeline { "description": "Pipeline to load PDF documents", "processors": [ { "set": { "field": "category", "value": "confidential" }, "attachment": { "field": "secret_file_data" } } ] } POST _ingest/pipeline/confidential_pdf_files_pipeline/_simulate { "docs": [ { "_source": { "op_name": "Op Konda", "secret_file_data":"U3VuZGF5IEx1bmNoIGF0IEtvbmRhJ3M=" } } ] } # Choosing only content metadata as part of attachment PUT _ingest/pipeline/only_content_pdf_files_pipeline { "description": "Pipeline to load PDF documents", "processors": [ { "set": { "field": "category", "value": "confidential" }, "attachment": { "field": "secret_file_data", "properties":["content"] } } ] } # Testing the pipeline GET _ingest/pipeline/only_content_pdf_files_pipeline/_simulate { "docs": [ { "_source": { "op_name": "Op Konda", "secret_file_data":"U3VuZGF5IEx1bmNoIGF0IEtvbmRhJ3M=" } } ] } ================================================ FILE: kibana_scripts/ch02_getting_started.txt ================================================ ## ## A handy scripts file for hands-on exercises on Kibana ## Copy the whole contents of this file to Kibana's DevTools ## If you wish to follow the running commentary for these scripts, ## follow the Ch2 Getting Started wiki page here: https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Ch-2:-Getting-Started ## ## Please let me know if you find any issues with this script # Indexing a few documents into books index PUT books/_doc/1 { "title":"Effective Java", "author":"Joshua Bloch", "release_date":"2001-06-01", "amazon_rating":4.7, "best_seller":true, "prices": { "usd":9.95, "gbp":7.95, "eur":8.95 } } PUT books/_doc/2 { "title":"Core Java Volume I - Fundamentals", "author":"Cay S. Horstmann", "release_date":"2018-08-27", "amazon_rating":4.8, "best_seller":true, "prices": { "usd":19.95, "gbp":17.95, "eur":18.95 } } PUT books/_doc/3 { "title":"Java: A Beginner’s Guide", "author":"Herbert Schildt", "release_date":"2018-11-20", "amazon_rating":4.2, "best_seller":true, "prices": { "usd":19.99, "gbp":19.99, "eur":19.99 } } #Getting number of documents in books index GET books/_count #Adding another index with a sample doc PUT fiction/_doc/1 { "title":"The Enchanters' Child", "author":"Navya Sarikonda" } # Fetching all documents from multiple indices GET books,fiction/_count #Fetch from ALL indices GET /_count #You can also use a wildcard too GET b*/_count # Fetching the document by its ID GET books/_doc/1 # To fetch source only GET books/_source/1 # To fetch multiple documents give a set of IDs using ids query GET books/_search { "query": { "ids": { "values": [1,2,3] } } } # Turn off the source GET books/_search { "_source": false, "query": { "ids": { "values": [1,2,3] } } } # Retrieving all documents in one go from the books index GET books/_search # Searching for books by an author GET books/_search { "query": { "match": { "author": "Joshua" } } } # Search using different cased letters GET books/_search { "query": { "match": { "author": "JoShUa" } } } # Search using surname GET books/_search { "query": { "match": { "author": "Bloch" } } } # Searching like regex won't return retun results GET books/_search { "query": { "match": { "author": "Josh" } } } # Searching like regex with prefix query - make sure the criteria is lowercased GET books/_search { "query": { "prefix": { "author": "josh" } } } #Searching for different keywords will still bring the results GET books/_search { "query": { "match": { "author": { "query": "Joshua Sarikonda" } } } } GET books/_search { "query": { "match": { "author": "Joshua Schildt" } } } #Searching for different keywords with an operator GET books/_search { "query": { "match": { "author": { "query": "Joshua Herbert" } } } } GET books/_search { "query": { "match": { "author": { "query": "Joshua Herbert", "operator": "AND" } } } } # Indexing lots of documents using bulk API # Copy the contents of books-kibana-dataset.txt from book's repository(https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/books-kibana-dataset.txt) # Searching across multiple fields using multi_match query GET books/_search { "query": { "multi_match": { "query": "Java", "fields": ["title","synopsis"] } } } # Boosting scores GET books/_search { "query": { "multi_match": { "query": "Java", "fields": ["title^3","synopsis"] } } } # Phrase search GET books/_search { "query": { "match_phrase": {#A The match_phrase query expects a sequence of words "synopsis": "must-have book for every Java programmer"#B Our phrase } } } # Match Phrase query GET books/_search { "query": { "match_phrase": { "synopsis": "must-have book for every Java programmer" } } } # Match Phrase query with highlights GET books/_search { "query": { "match_phrase": { "synopsis": "must-have book for every Java programmer" } }, "highlight": { "fields": { "synopsis": {} } } } # Match Phrase query with a word missing - doesn't get results GET books/_search { "query": { "match_phrase": { "synopsis": "must-have book every Java programmer" } } } # Match Phrase query with slop 1 GET books/_search { "query": { "match_phrase": { "synopsis": { "query": "must-have book every Java programmer", "slop": 1 } } } } #Fuzzy query (forgiving spelling mistakes) GET books/_search { "query": { "fuzzy": { "title": { "value": "kava", "fuzziness": 1 } } } } #Add few adhoc documents to the books index to run match_phrase_prefix query PUT books/_doc/99 { "title":"Java Collections Deep Dive" } PUT books/_doc/100 { "title":"Java Computing World" } GET books/_search { "query": { "match_phrase_prefix": { "title": "Java co" } } } ## TERM queries # Get the index mapping GET books/_mapping # Getting third edition books using term query GET books/_search { "query": { "term": { "edition": { "value": 3 } } } } # Range query GET books/_search { "query": { "range": { "amazon_rating": { "gte": 4.5, "lte": 5 } } } } ## Bool queries # Must clause with match query GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua Bloch" } } ] } } } # Must clause with two leaf queries - match and match_phrase GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua Bloch" } }, { "match_phrase": { "synopsis": "best Java programming books" } } ] } } } # Must and must_not clauses GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua" } } ], "must_not": [ { "range": { "amazon_rating": { "lt": 4.7 } } } ] } } } # Must, must_not and should clauses GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua" } } ], "must_not": [ { "range": { "amazon_rating": { "lt": 4.7 } } } ], "should": [ { "match": { "tags": "Software" } } ] } } } # Should clause without a match - the query will not fail GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua" } } ], "must_not": [ { "range": { "amazon_rating": { "lt": 4.7 } } } ], "should": [ { "match": { "tags": "movies" } } ] } } } # Adding a filter clause - drops books older than 2015 GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua" } } ], "must_not": [ { "range": { "amazon_rating": { "lt": 4.7 } } } ], "should": [ { "match": { "tags": "Software" } } ], "filter": [ { "range": { "release_date": { "gte": "2015-01-01" } } } ] } } } # Adding a filter clause - drops books older than 2015 GET books/_search { "query": { "bool": { "must": [ { "match": { "author": "Joshua" } } ], "must_not": [ { "range": { "amazon_rating": { "lt": 4.7 } } } ], "should": [ { "match": { "tags": "Software" } } ], "filter": [ { "range": { "release_date": { "gte": "2015-01-01" } } }, { "term": { "edition": 3 } } ] } } } # Adding a second filter (term query to check the edition ) GET books/_search { "query": { "bool": { "must": [{"match": {"author": "Joshua"}}], "must_not":[{"range":{"amazon_rating":{"lt":4.7}}}], "should": [{"match": {"tags": "Software"}}], "filter":[ {"range":{"release_date":{"gte": "2015-01-01"}}}, {"term": {"edition": 3}} ]} } } #Analytics ## Average rating of books - Query DSL sample GET books/_search { "aggs": { "avg_rating": { "avg": { "field": "amazon_rating" } } } } ## Copy the contents of covid-26march2021.txt from datasets (https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/covid-26march2021.txt) to Kibana's DevTools. Once copied, execute them using the _bulk API # Sum metric GET covid/_search { "size": 0, "aggs": { "critical_patients": { "sum": { "field": "critical" } } } } # Max metric GET covid/_search { "size": 0, "aggs": { "total_deaths": { "max": { "field": "deaths" } } } } #Stats metric GET covid/_search { "size": 0, "aggs": { "all_stats": { "stats": { "field": "deaths" } } } } #Extended stats GET covid/_search { "aggs": { "all_extended_stats": { "extended_stats": { "field": "deaths" } } } } #Bucketing aggreations ## Histogram GET covid/_search { "size": 0, "aggs": { "critical_patients_as_histogram": { "histogram": { "field": "critical", "interval": 2500 } } } } #Range GET covid/_search { "size": 0, "aggs": { "range_countries": { "range": { "field": "deaths", "ranges": [ {"to": 60000}, {"from": 60000,"to": 70000}, {"from": 70000,"to": 80000}, {"from": 80000,"to": 120000} ] } } } } ================================================ FILE: kibana_scripts/ch04_mapping.txt ================================================ ## ## A handy scripts file for hands-on exercises on Kibana ## Copy the whole contents of this file to Kibana's DevTools ## If you wish to follow the running commentary for these scripts, ## follow the Ch4 Mapping wiki page here: https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Ch-4.-Mapping ## ## Please let me know if you find any issues with this script ## ## Indexing a document for first time PUT movies/_doc/1 { "title":"Godfather", "rating":4.9, "release_year":"1972/08/01" } ## Fixing the incorrect values ### Adding age field with text values to the student document PUT students_temp/_doc/1 { "name":"John", "age":"12" } PUT students_temp/_doc/2 { "name":"William", "age":"14" } # The sort query will result in error: GET students_temp/_search { "sort": [ { "age": { "order": "asc" } } ] } # The response indicates the operation is not allowed as the `age` has been defined as a text field. # To fix this, sort on `age.keyword` as the following query demonstrates: GET students_temp/_search { "sort": [ { "age.keyword": { "order": "asc" } } ] } ## Update existing schema PUT employees/_mapping { "properties":{ "joining_date":{ "type":"date", "format":"dd-MM-yyyy" }, "phone_number":{ "type":"keyword" } } } # Create an empty index first PUT departments ## Updating an empty index PUT departments/_mapping { "properties":{ "name":{ "type":"text" } } } ## Reindexing POST _reindex { "source": {"index": "orders"}, "dest": {"index": "orders_new"} } ## Type coercion PUT cars/_doc/1 { "make":"BMW", "model":"X3", "age":"23" } ### Using standard (default) analyser POST _analyze { "text": "The movie was sick!!! Hilarious :) :) and WITTY ;) a KiLLer 👍" } # The response is:`The movie was sick Hilarious and WITTY a KiLLer 👍` ### Using English analyser #We can change the analyser to any of the out-of-box analysers by setting a anlyzer field. We demonstrate this below for testing a text with an English analyzer: POST _analyze { "text": "The movie was sick!!! Hilarious :) :) and WITTY ;) a KiLLer 👍", "analyzer": "english" } #The response from the English analyser is: `movi,sick,hilari, witti, killer, 👍` #The stemmed words like `movi`, `hilari`, `witti` are not real words, but the incorrect spellings don’t matter as long as all the derived forms can match the stemmed words. ## The token_count type PUT tech_books { "mappings": { "properties": { "title": { "type": "token_count", "analyzer": "standard" } } } } #Insert some adhoc docs: PUT tech_books/_doc/1 { "title":"Elasticsearch in Action" } PUT tech_books/_doc/2 { "title":"Elasticsearch for Java Developers" } PUT tech_books/_doc/3 { "title":"Elastic Stack in Action" } #Finally, let's put the token_count to use: GET tech_books/_search { "query": { "range": { "title": { "gt": 3, "lte": 5 } } } } ## Combining types ## We can combine the title field as a text type as well as a token_type: PUT tech_books { "mappings": { "properties": { "title": { "type": "text", "fields": { "word_count": { "type": "token_count", "analyzer": "standard" } } } } } } # Now we can issue a query to fetch titles with word count more than 4: GET tech_books/_search { "query": { "term": { "title.word_count": { "value": 4 } } } } ### The `keyword` type # Create an index with `email` as a keyword type: PUT faculty { "mappings": { "properties": { "email": { "type": "keyword" } } } } ### The `constant_keyword` data type # Census index with country declared as `constant_keyword` and UK as value PUT census { "mappings": { "properties": { "country":{ "type": "constant_keyword", "value":"United Kingdom" } } } } #Index a document for John Doe, with just his name (no `country` field): PUT census/_doc/1 { "name":"John Doe" } # When we search for all residents of the UK (though the document hasn’t got that field during indexing), we receive the positive result - returning John’s document: GET census/_search { "query": { "term": { "country": { "value": "United Kingdom" } } } } #The `constant_keyword` field will have exactly the same value for every document in that index. ### Wildcard type #The `wildcard` query to fetch documents matching to a value set as wildcard: GET errors/_search { "query": { "wildcard": { "description": { "value": "*obj*" } } } } ## Date type #Creating an index with a date type PUT flights { "mappings": { "properties": { "departure_date_time":{ "type": "date" } } } } #We can customize the departure date in multiple formats too: #"departure_date_time":{ # "type": "date", # "format": "dd-MM-yyyy||dd-MM-yy" #} #Issue a range query fetching documents between two date/time slots: #"range": { # "departure_date_time": { # "gte": "2021-08-06T05:00:00", # "lte": "2021-08-06T05:30:00" # } #} ## Boolean type PUT blockbusters { "mappings": { "properties": { "blockbuster":{ "type": "boolean" } } } } #Index couple of movies: Avatar as a blockbuster and Mulan(2020) as a flop, shown in the code snippet below: PUT blockbusters/_doc/2 { "title":"Avatar", "blockbuster":true } PUT blockbusters/_doc/2 { "title":"Mulan", "blockbuster":"false" } #The following query will fetch the Avatar as the blockbuster: GET blockbusters/_search { "query": { "term": { "blockbuster": { "value": "true" } } } } #Note: you can also provide an empty string for a false value: "blockbuster":"" ## The Range data types ### The `date_range` type #Index a `trainings` index with `date_range` type field: PUT trainings { "mappings": { "properties": { "name":{ "type": "text" }, "training_dates":{ "type": "date_range" } } } } #Let’s go ahead and index a few documents with Venkat’s training courses and dates. PUT trainings/_doc/1 { "name":"Functional Programming in Java", "training_dates":{ "gte":"2021-08-07", "lte":"2021-08-10" } } PUT trainings/_doc/2 { "name":"Programming Kotlin", "training_dates":{ "gte":"2021-08-09", "lte":"2021-08-12" } } PUT trainings/_doc/3 { "name":"Reactive Programming", "training_dates":{ "gte":"2021-08-17", "lte":"2021-08-20" } } #The `data_range` type field expects two values: an upper bound and a lower bound. These are usually represented by abbreviations like gte (greater than or equal to), lt (less than), and so on. #Issue a search request to find out Venkat’s courses between two dates: GET trainings/_search { "query": { "range": { "training_dates": { "gt": "2021-08-10", "lt": "2021-08-12" } } } } #As a response to the query, we see Venkat is delivering _Programming Kotlin_ between these two dates (the second document matches for these dates). The data_range made it easy to search among a range of data. ## IP Address data type # Develop an index with a field of `ip` data type: PUT networks { "mappings": { "properties": { "router_ip":{ "type": "ip" } } } } #Indexing the document is then straight forward: PUT networks/_doc/1 { "router_ip":"35.177.57.111" } #Issue the following query searches to data in the `networks` index to get the matching IP address: GET networks/_search { "query":{ "term": { "router_ip": { "value": "35.177.0.0/16" } } } } # Advanced data types ## Geo data type #Mapping schema for restaurants with address declared as `geo_point` type: PUT restaurants { "mappings": { "properties": { "name":{ "type": "text" }, "address":{ "type": "geo_point" } } } } #Indexing a restaurant with an address represented by longitude and latitude PUT restaurants/_doc/1 { "name":"Sticky Fingers", "address":{ "lon":"0.1278", "lat":"51.5074" } } #To search for a restaurant in a bounded area, we write the `geo_bounding_box` filter providing the address in the form of a rectangle with `top_let` and `bottom_right` coordinates given as latitude and longitude: GET restaurants/_search { "query": { "geo_bounding_box":{ "address":{ "top_left":{ "lon":"0", "lat":"52" }, "bottom_right":{ "lon":"1", "lat":"50" } } } } } ## Object data type #Define the schema definitions for `emails` model with object data types: PUT emails { "mappings": { "properties": { "to":{ "type": "text" }, "subject":{ "type": "text" }, "attachments":{ "properties": { "filename":{ "type":"text" }, "filetype":{ "type":"text" } } } } } } #Indexing an email document with all the relevant fields PUT emails/_doc/1 { "to:":"johndoe@johndoe.com", "subject":"Testing Object Type", "attachments":{ "filename":"file1.txt", "filetype":"confidential" } } #Searching for emails with a said attachment file: GET emails/_search { "query": { "match": { "attachments.filename": "file1.txt" } } } ### Limitations of an `object` type #Index a document with multiple attachments: PUT emails/_doc/2 { "to:":"mrs.doe@johndoe.com", "subject":"Multi attachments test", "attachments":[{ "filename":"file2.txt", "filetype":"confidential" },{ "filename":"file3.txt", "filetype":"private" }] } #Advanced bool query with term queries for a match with a filename and filetype GET myemails/_search { "query": { "bool": { "must": [ {"term": { "attachments.filename.keyword": "file2.txt"}}, {"term": { "attachments.filetype.keyword": "private" }} ] } } } ## Nested data type #Mapping schema definition for nested type: PUT emails_nested { "mappings": { "properties": { "attachments": { "type": "nested", "properties": { "filename": { "type": "keyword" }, "filetype": { "type": "text" } } } } } } #Indexing a sample document into an `emails_nested` with nested property: PUT emails_nested/_doc/1 { "attachments" : [ { "filename" : "file1.txt", "filetype" : "confidential" }, { "filename" : "file2.txt", "filetype" : "private" } ] } # Fetching the documents that match `file1.txt` with `private` as the classification: GET emails_nested/_search { "query": { "nested": { "path": "attachments", "query": { "bool": { "must": [ { "match": { "attachments.filename": "file1.txt" }}, { "match": { "attachments.filetype": "private" }} ] } } } } } ## Flattened data type # Create a mapping with flattened data type: PUT consultations { "mappings": { "properties": { "patient_name":{ "type": "text" }, "doctor_notes":{ "type": "flattened" } } } } # Indexing the consultation document with doctor’s notes: PUT consultations/_doc/1 { "patient_name":"John Doe", "doctor_notes":{ "temperature":103, "symptoms":["chills","fever","headache"], "history":"none", "medication":["Antibiotics","Paracetamol"] } } # Searching through the flattened data type field GET consultations/_search { "query": { "match": { "doctor_notes": "Paracetamol" } } } # An advanced query on a flattened data type: GET consultations/_search { "query": { "bool": { "must": [{"match": {"doctor_notes": "headache"}}, {"match": {"doctor_notes": "Antibiotics"}}], "must_not": [{"term": {"doctor_notes": {"value": "diabetics"}}}] } } } ## Join data type # Mapping of the doctors schema definition PUT doctors { "mappings": { "properties": { "relationship":{ "type": "join", "relations":{ "doctor":"patient" } } } } } # Indexing a doctor document - note the relationship attribute: PUT doctors/_doc/1 { "name":"Dr Mary Montgomery", "relationship":{ "name":"doctor" } } # Creating two patients for our doctor: PUT doctors/_doc/2?routing=mary { "name":"John Doe", "relationship":{ "name":"patient", "parent":1 } } PUT doctors/_doc/3?routing=mary { "name":"Mrs Doe", "relationship":{ "name":"patient", "parent":1 } } #Fetching the patients of Dr Montgomery GET doctors/_search { "query": { "parent_id":{ "type":"patient", "id":1 } } } #Mapping schema for technical books with the title as search_as_you_type type PUT tech_books { "mappings": { "properties": { "title": { "type": "search_as_you_type" } } } } #Indexing a few books: PUT tech_books4/_doc/1 { "title":"Elasticsearch in Action" } PUT tech_books4/_doc/2 { "title":"Elasticsearch for Java Developers" } PUT tech_books4/_doc/3 { "title":"Elastic Stack in Action" } # Searching in a search_as_you_type field and its subfields GET tech_books4/_search { "query": { "multi_match": { "query": "in", "type": "bool_prefix", "fields": ["title","title._2gram","title._3gram"] } } } # _index_prefix produces edge n-grams - [e, el, ela, elas, elast, elasti, elastic] GET tech_books4/_analyze { "field": "title._index_prefix", "text": ["Elastic"] } # 2gram produces two tokens - [elaticsearch, in],[in, action] GET tech_books4/_analyze { "field": "title._2gram", "text": ["Elasticsearch in Action"] } # 3gram produces three tokens - [elaticsearch, for, java],[for, java, developers] GET tech_books4/_analyze { "field": "title._3gram", "text": ["Elasticsearch for Java Developers"] } # This query should return the Elasticsearch in Action and Elastic Stack in Action books. ## Multi types #Schema definition with multi-typed field: PUT emails { "mappings": { "properties": { "subject":{ "type": "text", "fields": { "kw":{ "type":"keyword" }, "comp":{ "type":"completion" } } } } } } ================================================ FILE: kibana_scripts/ch05_working_with_documents.txt ================================================ ## ## A handy scripts file for hands-on exercises on Kibana ## Copy the whole contents of this file to Kibana's DevTools ### Indexing a movie document with an identifier: PUT movies/_doc/1 { "title":"The Godfather", "synopsis":"The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son" } ## Posting a movie review without an ID POST movies_reviews/_doc { "movie":"The Godfather", "user":"Peter Piper", "rating":4.5, "remarks":"The movie started with a ..." } # Movie with an ID POST movies/_doc/1 { "movie":"The Godfather", } #A Not a movie but a tweet - overriding existing movie PUT movies/_doc/1 { "tweet":"Elasticsearch in Action 2e is here!" } # Using _create endpoint to avoid overriding. # First create a movie with ID 100 PUT movies/_create/100 { "title":"Mission: Impossible", "director":"Brian De Palma" } # Now, index a tweet in place of an existing movie - this op should fail PUT movies/_create/100 { "tweet":"A movie with popcorn is so cool!" } # Stop auto creation of indices PUT _cluster/settings { "persistent": { "action.auto_create_index": "false" } } # Using multi-get (_mget) API to get multiple docs GET movies/_mget { "ids" : ["1", "12", "19", "34"] } # Check if doc exists HEAD movies/_doc/1 # Fetching docs from multiple indices using _mget endpoint GET _mget { "docs":[ { "_index":"classic_movies", "_id":11 }, { "_index":"international_movies", "_id":22 }, { "_index":"top100_movies", "_id":33 } ] } # Use ids query to fetch multiple documents GET classic_movies/_search { "query": { "ids": { "values": [1,2,3,4] } } } # Fetching multiple docs from multiple indices GET classic_movies,international_movies/_search { # body } # Updating documents ### Adding new fields POST movies/_update/1 { "doc": { "actors":["Marlon Brando","Al Pacino","James Caan"], "director":"Francis Ford Coppola" } } ### Modify an existing document POST movies/_update/1 { "doc": { "title":"The Godfather (Original)" } } GET movies/_doc/1 ### Adding a new value to the actors array POST movies/_update/1 { "doc": { "actors":["Marlon Brando","Al Pacino","James Caan", "Robert Duvall"] } } ## Scripted updates ### Adding additional actor via the script POST movies/_update/1 { "script": { "source": "ctx._source.actors.add('Diane Keaton')" } } GET movies/_doc/1 ## Removing an actor using the script POST movies/_update/1 { "script": { "source": "ctx._source.actors.remove(ctx._source.actors.indexOf('Diane Keaton'))" } } ### Adding a new field POST movies/_update/1 { "script": { "source": "ctx._source.imdb_user_rating = 9.2" } } ### Removing a field POST movies/_update/1 { "script": { "source": "ctx._source.remove('metacritic_rating')" } } ### Adding multiple fields POST movies/_update/1 { "script": { "source": """ ctx._source.runtime_in_minutes = 175; ctx._source.metacritic_rating= 100; ctx._source.tomatometer = 97; ctx._source.boxoffice_gross_in_millions = 134.8; """ } } ### Conditional updates POST movies/_update/1 { "script": { "source": """ if(ctx._source.boxoffice_gross_in_millions > 125) {ctx._source.blockbuster = true} else {ctx._source.blockbuster = false} """ } } ### Retrieve the document GET movies/_doc/1 ### Dynamically passing a parameter to the script POST movies/_update/1 { "script": { "source": """ if(ctx._source.boxoffice_gross_in_millions > params.gross_earnings_threshold) {ctx._source.blockbuster = true} else {ctx._source.blockbuster = false} """, "params": { "gross_earnings_threshold":150 } } } ### Upsert POST movies/_update/5 { "script": { "source": "ctx._source.gross_earnings = '357.1m'" }, "upsert": { "title":"Top Gun", "gross_earnings":"357.5m" } } ## Updating a non-existing field will throw an error POST movies/_update/11 { "doc": { "runtime_in_minutes":110 } } ## Updating a non-existing field that throws an error fixed with doc_as_upsert flag POST movies/_update/11 { "doc": { "runtime_in_minutes":110 }, "doc_as_upsert":true } ### Updating the document using a query method POST movies/_update_by_query { "query": { "match": { "actors": "Al Pacino" } }, "script": { "source": """ ctx._source.actors.add('Oscar Winner Al Pacino'); ctx._source.actors.remove(ctx._source.actors.indexOf('Al Pacino')) """, "lang": "painless" } } ## Deleting documents ### Deleting a document given an ID DELETE movies/_doc/1 ## Delete by query ### Add three sample documents PUT movies/_doc/101 { "title":"Jaws", "director":"Steven Spielberg", "gross_earnings_in_millions":355 } PUT movies/_doc/102 { "title":"Jaws II", "director":"Steven Spielberg", "gross_earnings_in_millions":375 } PUT movies/_doc/103 { "title":"Jaws III", "director":"Steven Spielberg", "gross_earnings_in_millions":300 } # Delete the movies by a range query POST movies/_delete_by_query { "query": { "range": { "gross_earnings_in_millions": { "gt": 350, "lt": 400 } } } } #Not found GET movies/_doc/101 #Not found GET movies/_doc/102 #Found the movie GET movies/_doc/103 ## Complex delete query POST movies/_delete_by_query { "query": { "bool": { "must": [ { "match": { "director": "Steven Spielberg" } } ], "must_not": [ { "range": { "imdb_rating": { "gte": 9, "lte": 9.5 } } } ], "filter": [ { "range": { "gross_earnings_in_millions": { "lt": 100 } } } ] } } } ## Bulk indexing POST _bulk {"index":{"_index":"movies","_id":"100"}} {"title": "Mission Impossible","release_date": "1996-07-05"} POST movies/_bulk {"index":{"_id":"100"}} {"title": "Mission Impossible","release_date": "1996-07-05"} ## Tom Cruise's movies POST movies/_bulk {"index":{}} {"title": "Mission Impossible","release_date": "1996-07-05"} {"index":{}} {"title": "Mission Impossible II","release_date": "2000-05-24"} {"index":{}} {"title": "Mission Impossible III","release_date": "2006-05-03"} {"index":{}} {"title": "Mission Impossible - Ghost Protocol","release_date": "2011-12-26"} # Create Rush Hour Movie POST _bulk {"index":{"_index":"movies","_id":"200"}} {"doc": {"director":"Brett Ratner"}} # Update the Rush Hour movie POST _bulk {"update":{"_index":"movies","_id":"200"}} {"doc": {"director":"Brett Ratner", "actors":["Jackie Chan","Chris Tucker"]}} ## Multiple entities POST _bulk {"index":{"_index":"books"}} {"title": "Elasticsearch in Action"} {"create":{"_index":"flights", "_id":"101"}} {"title": "London to Bucharest"} {"index":{"_index":"pets"}} {"name": "Milly","age_months": 18} {"delete":{"_index":"movies", "_id":"101"}} { "update" : {"_index":"movies", "_id":"1"} } { "doc" : {"title" : "The Godfather (Original)"} } ================================================ FILE: kibana_scripts/ch06_indexing_operations.txt ================================================ ## ## A handy scripts file for hands-on exercises on Kibana ## Copy the whole contents of this file to Kibana's DevTools ## If you wish to follow the running commentary for these scripts, ## follow the Ch6 Text Analysis wiki page here: https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Ch-6.-Indexing Operations ## ## Please let me know if you find any issues with this script ## ## Indexing Documents ### Indexing a movie document with an identifier: # First document containing car data PUT cars/_doc/1 { "make":"Maserati", "model":"GranTurismo Sport", "speed_mph":186 } # Disabling automatic creation of indices # Don't execute it for now as it will hamper your progress # executing the rest of the script # PUT _cluster/settings # { # "persistent": { # "action.auto_create_index":false # } # } # Index with sample mapping PUT cars_index_with_sample_mapping { "mappings": { "properties": { "make":{ "type": "text" } } } } #Index with custom settings PUT cars_index_with_sample_settings { "settings": { "number_of_replicas": 3, "codec": "best_compression" } } # Creating an index with an alias PUT cars_index_with_sample_alias { "aliases": { "alias_for_cars_index_with_sample_alias": {} } } # Creating an index with custom settings PUT cars_with_custom_settings { "settings":{ "number_of_shards":3, "number_of_replicas":5, "codec": "best_compression", "max_script_fields":128, "refresh_interval": "60s" } } # Updating dynamic property on an index PUT cars_with_custom_settings/_settings { "settings": { "number_of_replicas": 2 } } # Fetching the settings of an index GET cars_with_custom_settings/_settings # Pre-requisite to create three car indices for the next query to pass PUT cars1 PUT cars2 PUT cars3 # Fetching the settings of multiple indices in one go GET cars1,cars2,cars3/_settings # Fetches the settings for the index identified with a wildcard (*) GET cars*/_settings # Fetching a single attribute GET cars_with_custom_settings/_settings/index.number_of_shards #Creating an index with field mappings for a car document PUT cars_with_mappings { "mappings": { "properties": { "make":{ "type": "text" }, "model":{ "type": "text" }, "registration_year":{ "type": "date", "format": "dd-MM-yyyy" } } } } #Creating an index with both settings and mappings PUT cars_with_settings_and_mappings { "settings": { "number_of_replicas": 3 }, "mappings": { "properties": { "make":{ "type": "text" } } } } # Creating an alias using an aliases object PUT cars_for_aliases { "aliases": { "my_new_cars_alias": {} } } # Creating an alias using an _alias endpoint PUT cars_for_aliases/_alias/my_cars_alias # Creating an alias using an _alias endpoint PUT cars_for_aliases/_alias/all_cars_alias # Creating a single alias pointing to multiple indices PUT cars1,cars2,cars3/_alias/multi_cars_alias # Creating an alias with a wildcard PUT cars*/_alias/wildcard_cars_alias #Fetching aliases, settings, and mappings for an index GET cars # Getting an alias on a single index GET my_cars_alias/_alias # Fetching aliases associated with multiple indices GET all_cars_alias,my_cars_alias/_alias #Prerequisite in getting the next query executed successfully PUT vintage_cars PUT vintage_cars_new # Performing multiple aliasing operations POST _aliases { "actions": [ { "remove": { "index": "vintage_cars", "alias": "vintage_cars_alias" } }, { "add": { "index": "vintage_cars_new", "alias": "vintage_cars_alias" } } ] } # Prerequiste for the next query PUT power_cars PUT rare_cars PUT luxury_cars # Creating an alias pointing to multiple indice POST _aliases { "actions": [ { "add": { "indices": ["vintage_cars","power_cars","rare_cars","luxury_cars"], "alias": "high_end_cars_alais" } } ] } # Getting index configurations for multiple indices GET cars1,cars2,cars3 # Getting multiple index configurations with a wildcard GET ca* # Fetching configurations for specific indices GET mov*,stu* # Getting individual configurations for an index GET cars/_settings GET cars/_mapping GET cars/_alias #Prerequisite for the next query PUT cars/_alias/cars_alias #Deleting an alias explicitly DELETE cars/_alias/cars_alias # Closing the cars index indefinitely POST cars/_close?wait_for_active_shards=index-setting # Closing multiple indices POST cars1,*mov*,students*/_close?wait_for_active_shards=index-setting #Halt all the live operations using _all or *: # I am commenting this out - uncomment only when you know what you are doing. # Refer to Book for more informtion # POST */_close?wait_for_active_shards=index-setting # Disabling the action to close all indices # Caution: Make sure you understand the implication of this command. Refer to book notes PUT _cluster/settings { "persistent": { "action.destructive_requires_name":true } } # Disabling the closing indices feature # Caution: Make sure you understand the implication of this command. Refer to book notes PUT _cluster/settings { "persistent": { "cluster.indices.close.enable":false } } # Putting the index back into operation POST cars/_open # Creating an index template POST _index_template/cars_template { "index_patterns": ["*cars*"], "priority": 1, "template": { "mappings": { "properties":{ "created_at":{ "type":"date" }, "created_by":{ "type":"text" } } } } } # the cars_template_mar21 overrides the cars_template_feb21 in the following code snippet (though the names suggest the other way!): #POST _index_template/cars_template_mar21 #{ # "index_patterns": ["*cars*"], # "priority": 20, # "template": { ... } #} #POST _index_template/cars_template_feb21 #{ # "index_patterns": ["*cars*"], # "priority": 30, # "template": { ... } #} #A The lower priority index template #B Same matching template but with a higher priority # Developing a component template POST _component_template/dev_settings_component_template { "template":{ "settings":{ "number_of_shards":3, "number_of_replicas":3 } } } # A component template with a mapping schema POST _component_template/dev_mapping_component_template { "template": { "mappings": { "properties": { "created_by": { "type": "text" }, "version": { "type": "float" } } } } } # Creating an index template composed of a component template POST _index_template/composed_cars_template { "index_patterns": ["*cars*"], "priority": 200, "composed_of": ["dev_settings_component_template", "dev_mapping_component_template"] } # Fetching the statistics of an index GET cars/_stats # Fetching the statistics for multiple indices GET cars*/_stats # Fetching the statistics for all indices in the cluster GET */_stats #The following snippet shows how to return the statistics in segments: GET cars/_stats/segments # Prerequisite for the next query PUT all_cars # Making sure the index is read-only PUT all_cars/_settings { "settings":{ "index.blocks.write":"true" } } #Splitting the all_cars index # Note the target index’s primary shard number must be a multiple of the number of primary shards of the source index. Refer to book for more details. POST all_cars/_split/all_cars_new { "settings": { "index.number_of_shards": 12 } } # This query will throw an exception. That’s because we violated the second rule (see book notes): # "reason" : "the number of source shards [3] must be a factor of [14]" POST all_cars/_split/all_cars_new { "settings": { "index.number_of_shards": 14 } } #Carrying out the prerequisites before shrinking the index PUT all_cars/_settings { "settings": { "index.blocks.write": true, "index.routing.allocation.require._name": "node1" } } # Shrinking the index PUT all_cars/_shrink/all_cars_new2 { "settings":{ "index.blocks.write":null, "index.routing.allocation.require._name":null, "index.number_of_shards":1, "index.number_of_replicas":5 } } #Prerequisite for the next query PUT cars_2021-000001 # Creating an alias for an existing index POST _aliases { "actions": [ { "add": { "index": "cars_2021-000001", "alias": "latest_cars_a", "is_write_index": true } } ] } # Rolling over the index POST latest_cars_a/_rollover # The response from the above rollover call: #{ # "acknowledged" : true, # "shards_acknowledged" : true, # "old_index" : "latest_cars-000001", #A Old index name # "new_index" : "latest_cars-000002", #B New index name # "rolled_over" : true, # "dry_run" : false, # "conditions" : { } #} # Creating a policy with hot and delete policies PUT _ilm/policy/hot_delete_policy { "policy": { "phases": { "hot": { "min_age": "1d", "actions": { "set_priority": { "priority": 250 } } }, "delete": { "actions": { "delete" : { } } } } } } # Creating an index with an index life cycle PUT hot_delete_policy_index { "settings": { "index.lifecycle.name":"hot_delete_policy" } } #Simple policy definition for hot phase PUT _ilm/policy/hot_simple_policy { "policy": { "phases": { "hot": { "min_age": "0ms", "actions": { "rollover": { "max_age": "1d", "max_docs": 10000, "max_size": "10gb" } } } } } } # Attaching a life-cycle policy to a template PUT _index_template/mysql_logs_template { "index_patterns": ["mysql-*"], "template":{ "settings":{ "index.lifecycle.name":"hot_simple_policy", "index.lifecycle.rollover_alias":"mysql-logs-alias" } } } # Setting the index as writable for the alias PUT mysql-index-000001 { "aliases": { "mysql-logs-alias": { "is_write_index":true } } } # Creating an advanced life-cycle policy PUT _ilm/policy/hot_warm_delete_policy { "policy": { "phases": { "hot": { "min_age": "1d", "actions": { "rollover": { "max_size": "40gb", "max_age": "6d" }, "set_priority": { "priority": 50 } } }, "warm": { "min_age": "7d", "actions": { "shrink": { "number_of_shards": 1 } } }, "delete": { "min_age": "30d", "actions": { "delete": {} } } } } } ================================================ FILE: kibana_scripts/ch07_text_analysis.txt ================================================ ## ## A handy scripts file for hands-on exercises on Kibana ## Copy the whole contents of this file to Kibana's DevTools ## If you wish to follow the running commentary for these scripts, ## follow the Ch2 Getting Started wiki page here: https://github.com/madhusudhankonda/elasticsearch-in-action/wiki/Ch-7.-Text Analysis ## ## Please let me know if you find any issues with this script # A standard (implicit) analyzer GET _analyze { "text": "James Bond 007" } # A simple analyzer GET _analyze { "text": "James Bond 007", "analyzer": "simple" } # Configuring an analyzer on the fly GET _analyze { "tokenizer": "path_hierarchy", "filter": ["uppercase"], "text": "/Volumes/FILES/Dev" } # Default "standard" analyser GET _analyze { "text": "Hot cup of ☕ and a 🍿is a Weird Combo :(!!" } # Specifying the standard analyser GET _analyze { "analyzer": "standard", "text": "Hot cup of ☕ and a 🍿is a Weird Combo :(!!" } # Specifying the standard analyser with stop fitler GET _analyze { "tokenizer": "standard", "text": "Hot cup of ☕ and a 🍿is a Weird Combo :(!!", "filter": ["lowercase"] } #Configuring analyzers PUT my_index_with_stopwords { "settings": { "analysis": { "analyzer": { "standard_with_stopwords":{ "type":"standard", "stopwords":"_english_" } } } } } POST my_index_with_stopwords/_analyze { "text": ["Hot cup of ☕ and a 🍿is a Weird Combo :(!!"], "analyzer": "standard_with_stopwords" } DELETE my_index_with_stopwords_hindi PUT my_index_with_stopwords_hindi { "settings": { "analysis": { "analyzer": { "standard_with_stopwords_hindi":{ "type":"standard", "stopwords":"_hindi_" } } } } } POST my_index_with_stopwords_hindi/_analyze { "text": ["आप कैसे हैं?"], "analyzer": "standard_with_stopwords_hindi" } POST my_index_with_stopwords_hindi/_analyze { "text": ["आप क्या कर रहे हो?"], "analyzer": "standard_with_stopwords_hindi" } # Index with custom swear words PUT index_with_swear_stopwords { "settings": { "analysis": { "analyzer": { "swearwords_analyzer":{ "type":"standard", "stopwords_path":"swearwords.txt" } } } } } #Test it POST index_with_swear_stopwords/_analyze { "text": ["Damn, that sucks!"], "analyzer": "swearwords_analyzer" } ## Setting token length DELETE my_index_with_max_token_length PUT my_index_with_max_token_length { "settings": { "analysis": { "analyzer": { "standard_max_token_length":{ "type":"standard", "max_token_length":7 } } } } } POST my_index_with_max_token_length/_analyze { "text": ["elasticsearch"], "analyzer": "standard_max_token_length" } # Simple analyzer POST _analyze { "text": ["Lukša's K8s in Action"], "analyzer": "simple" } # Whitespace Analyzer POST _analyze { "text":"Peter_Piper picked a peck of PICKLED-peppers!!", "analyzer": "whitespace" } # Keyword Analyzer POST _analyze { "text":"Elasticsearch in Action", "analyzer": "keyword" } # Fingerprint analyzer POST _analyze { "text": "A dosa is a thin pancake or crepe originating from South India. It is made from a fermented batter consisting of lentils and rice.", "analyzer": "fingerprint" } # Pattern POST _analyze { "text":"Is is true?", "pattern": "[tT]rue|[yY]es", "analyzer": "pattern" } # Additional example - a pattern analyzer DELETE index_with_pattern_analyzer PUT index_with_pattern_analyzer { "settings": { "analysis": { "analyzer": { "pattern_analyzer": { "type": "pattern", "pattern": "[a-zA-Z]{3}", "lowercase": true } } } } } # Dash pattern PUT index_with_dash_pattern_analyzer { "settings": { "analysis": { "analyzer": { "pattern_analyzer": { "type": "pattern", "pattern": "[-]", "lowercase": true } } } } } POST index_with_dash_pattern_analyzer/_analyze { "text": "1234-5678-9000-0000", "analyzer": "pattern_analyzer" } # English Language Analyzer POST _analyze { "text": "She sells sea shells", "analyzer": "english" } # German Language Analyzer POST _analyze { "text": "Guten Morgen", "analyzer": "german" } # English Language Analyzer POST _analyze { "text": "नमस्ते कैसी हो तुम", "analyzer": "hindi" } DELETE index_with_custom_english_analyzer # Custom Language Analyser with stopwords PUT index_with_custom_english_analyzer { "settings": { "analysis": { "analyzer": { "index_with_custom_english_analyzer":{ "type":"english", "stopwords":["a","an","is","and","for"] } } } } } POST index_with_custom_english_analyzer/_analyze { "text":"A dog is for a life", "analyzer":"index_with_custom_english_analyzer" } # Stemming POST index_with_custom_english_analyzer/_analyze { "text":"Author authors authoring authored authorization authority", "analyzer":"english" } DELETE index_with_stem_exclusion_english_analyzer # Custom Language Analyser with stem_exception PUT index_with_stem_exclusion_english_analyzer { "settings": { "analysis": { "analyzer": { "stem_exclusion_english_analyzer":{ "type":"english", "stem_exclusion":["authority","authorization"] } } } } } POST index_with_stem_exclusion_english_analyzer/_analyze { "text": "No one can challenge my authority without my authorization", "analyzer": "stem_exclusion_english_analyzer" } DELETE index_with_custom_analyzer ## Custom Analyzer PUT index_with_custom_analyzer { "settings": { "analysis": { "analyzer": { "custom_analyzer":{ "type":"custom", "char_filter":["html_strip"], "tokenizer":"standard", "filter":["uppercase"] } } } } } POST index_with_custom_analyzer/_analyze { "text": "

HELLO, WoRLD

", "analyzer": "custom_analyzer" } # Advanced Custom Analyser PUT index_with_custom_greek_analyzer { "settings": { "analysis": { "analyzer": { "custom_analyzer":{ "type":"custom", "char_filter":["greek_symbol_mapper"], "tokenizer":"standard", "filter":["uppercase"] } }, "char_filter": { "greek_symbol_mapper":{ "type":"mapping", "mappings":[ "α => alpha", "β => Beta", "γ => Gamma" ] } } } } } POST index_with_custom_greek_analyzer/_analyze { "text": "α and β are roots of a quadratic equation", "analyzer": "custom_analyzer" } DELETE index_with_parse_greek_letters_custom_analyzer PUT index_with_parse_greek_letters_custom_analyzer { "settings": { "analysis": { "analyzer": { "greek_letter_custom_analyzer":{ "type":"custom", "char_filter":["greek_symbol_mapper"], "tokenizer":"standard", "filter":["lowercase", "greek_keep_words"] } }, "char_filter": { "greek_symbol_mapper":{ "type":"mapping", "mappings":[ "α => alpha", "β => Beta", "γ => Gamma" ] } }, "filter": { "greek_keep_words":{ "type":"keep", "keep_words":["alpha", "beta", "gamma"] } } } } } POST index_with_parse_greek_letters_custom_analyzer/_analyze { "text": "α and β are roots of a quadratic equation. γ isn't", "analyzer": "greek_letter_custom_analyzer" } ## Specifying the analysers # Setting analyzers at field level during index creation PUT authors_with_field_level_analyzers { "mappings": { "properties": { "name":{ "type": "text" }, "about":{ "type": "text", "analyzer": "english" }, "description":{ "type": "text", "fields": { "my":{ "type": "text", "analyzer": "fingerprint" } } } } } } # Creating an index with a default analyzer PUT authors_with_default_analyzer { "settings": { "analysis": { "analyzer": { "default":{ "type":"keyword" } } } } } # Test the analyzer PUT authors_with_default_analyzer/_analyze { "name":"John Doe" } # Setting the analyzer alongside a search query GET authors_index_for_search_analyzer/_search { "query": { "match": { "author_name": { "query": "M Konda", "analyzer": "simple" } } } } # Setting a search analyzer at a field level PUT authors_index_with_both_analyzers_field_level { "mappings": { "properties": { "author_name":{ "type": "text", "analyzer": "stop", "search_analyzer": "simple" } } } } # Setting a search analyzer at a field level PUT authors_index_with_both_analyzers_field_level { "mappings": { "properties": { "author_name":{ "type": "text", "analyzer": "stop", "search_analyzer": "simple" } } } } # Specifying index and search analyzers during the index creation PUT authors_index_with_both_analyzers_field_level { "mappings": { "properties": { "author_name":{ "type": "text", "analyzer": "standard", "search_analyzer": "simple" } } } } ## Character Filters # HTML Strip Character Filter POST _analyze { "text":"

Where is my cheese?

", "tokenizer": "standard", "char_filter": ["html_strip"] } DELETE index_with_html_strip_filter PUT index_with_html_strip_filter { "settings": { "analysis": { "analyzer": { "custom_html_strip_filter_analyzer":{ "tokenizer":"keyword", "char_filter":["my_html_strip_filter"] } }, "char_filter": { "my_html_strip_filter":{ "type":"html_strip", "escaped_tags":["h1"] } } } } } POST index_with_html_strip_filter/_analyze { "text": "

Hello,

World!

", "analyzer": "custom_html_strip_filter_analyzer" } # Mapping Char Filter POST _analyze { "text": "I am from UK", "char_filter": [ { "type": "mapping", "mappings": [ "UK => United Kingdom" ] } ] } DELETE index_with_mapping_char_filter # Custom analyzer wiht a mapping characte filter PUT index_with_mapping_char_filter { "settings": { "analysis": { "analyzer": { "my_social_abbreviations_analyzer": { "tokenizer": "keyword", "char_filter": [ "my_social_abbreviations" ] } }, "char_filter": { "my_social_abbreviations": { "type": "mapping", "mappings": [ "LOL => laughing out loud", "BRB => be right back", "OMG => oh my god" ] } } } } } POST index_with_mapping_char_filter/_analyze { "text": "LOL", "analyzer": "my_social_abbreviations_analyzer" } #Character filter using mappings from a file POST _analyze { "text": "FBI and CIA are USA's security organizations", "char_filter": [ { "type": "mapping", "mappings_path": "secret_organizations.txt" } ] } # Pattern replce charcter filter DELETE index_with_pattern_replace_filter PUT index_with_pattern_replace_filter { "settings": { "analysis": { "analyzer": { "my_pattern_replace_analyzer":{ "tokenizer":"keyword", "char_filter":["pattern_replace_filter"] } }, "char_filter": { "pattern_replace_filter":{ "type":"pattern_replace", "pattern":"_", "replacement":"-" } } } } } POST index_with_pattern_replace_filter/_analyze { "text": "Apple_Boy_Cat", "analyzer": "my_pattern_replace_analyzer" } PUT my-index-00001 { "settings": { "analysis": { "analyzer": { "my_analyzer": { "tokenizer": "standard", "char_filter": [ "my_char_filter" ] } }, "char_filter": { "my_char_filter": { "type": "pattern_replace", "pattern": "(\\d+)-(?=\\d)", "replacement": "$1_" } } } } } POST my-index-00001/_analyze { "analyzer": "my_analyzer", "text": "123-456-789" } ## Tokenizers # Standard tokenizer POST _analyze { "text": "Hello,cruel world!", "tokenizer": "standard" } # Cutom stadard tokenizer PUT index_with_custom_standard_tokenizer { "settings": { "analysis": { "analyzer": { "custom_token_length_analyzer": { "tokenizer": "custom_token_length_tokenizer" } }, "tokenizer": { "custom_token_length_tokenizer": { "type": "standard", "max_token_length": 2 } } } } } POST index_with_custom_standard_tokenizer/_analyze { "text": "Bond", "analyzer": "custom_token_length_analyzer" } # URL Tokenizer POST _analyze { "text": "My website is https://localhost:9090", "tokenizer": "uax_url_email" } # Email POST _analyze { "text": "my email is dimpy@dimpy.com", "tokenizer": "uax_url_email" } # N-Gram Tokenizer POST _analyze { "text": "Bond", "tokenizer": "ngram" } # Custom n-gram tokenizer DELETE index_with_ngram_tokenizer PUT index_with_ngram_tokenizer { "settings": { "analysis": { "analyzer": { "ngram_analyzer":{ "tokenizer":"ngram_tokenizer" } }, "tokenizer": { "ngram_tokenizer":{ "type":"ngram", "min_gram":2, "max_gram":3, "token_chars":[ "letter" ] } } } } } POST index_with_ngram_tokenizer/_analyze { "text": "bond", "analyzer": "ngram_analyzer" } #Edge-ngram POST _analyze { "text":"hello", "tokenizer": "edge_ngram" } DELETE index_with_edge_ngram PUT index_with_edge_ngram { "settings": { "analysis": { "analyzer": { "edge_ngram_analyzer":{ "tokenizer":"my_edge_ngram_tokenizer" } }, "tokenizer": { "my_edge_ngram_tokenizer":{ "type":"edge_ngram", "min_gram":2, "max_gram":6, "token_chars":["letter","digit"] } } } } } POST index_with_edge_ngram/_analyze { "text": "bond", "analyzer": "edge_ngram_analyzer" } ## Simple Pattern Analyzer POST _analyze { "text": "hello", "tokenizer": "simple_pattern" } DELETE index_simple_pattern_analyzer PUT index_simple_pattern_analyzer { "settings": { "analysis": { "analyzer": { "my_simple_pattern_analyzer":{ "tokenizer":"simple_pattern_tokenizer" } }, "tokenizer": { "simple_pattern_tokenizer":{ "type": "simple_pattern", "pattern":"[a-zA-Z]{2}" } } } } } POST index_simple_pattern_analyzer/_analyze { "text": "sugarfree", "analyzer": "my_simple_pattern_analyzer" } DELETE index_with_simple_pattern_split_analyzer #Simple pattern split tokenizer PUT index_with_simple_pattern_split_analyzer { "settings": { "analysis": { "analyzer": { "simple_pattern_split_analyzer":{ "tokenizer":"simple_pattern_split_tokenizer" } } ,"tokenizer": { "simple_pattern_split_tokenizer":{ "type":"simple_pattern_split", "pattern":">" } } } } } POST index_with_simple_pattern_split_analyzer/_analyze { "text": "c>file", "analyzer": "simple_pattern_split_analyzer" } # Path Hierarchy POST _analyze { "text": "/Volumes/doe/documents", "tokenizer": "path_hierarchy" } ## Token Fitlers GET _analyze { "tokenizer" : "standard", "filter" : ["uppercase","reverse"], "text" : "bond" } PUT index_with_token_filters { "settings": { "analysis": { "analyzer": { "token_filter_analyser": { "tokenizer": "standard", "filter": [ "uppercase", "reverse" ] } } } } } POST index_with_token_filters/_analyze { "analyzer": "token_filter_analyser", "text": "bond" } #Stemmer POST _analyze { "tokenizer": "standard", "filter": ["stemmer"], "text": "barking is my life" } #Shingles POST _analyze { "tokenizer": "standard", "filter": ["shingle"], "text": "java python go" } DELETE index_with_shingle PUT index_with_shingle { "settings": { "analysis": { "analyzer": { "shingles_analyzer":{ "tokenizer":"standard", "filter":["shingles_filter"] } }, "filter": { "shingles_filter":{ "type":"shingle", "min_shingle_size":2, "max_shingle_size":3, "output_unigrams":false } } } } } POST index_with_shingle/_analyze { "text": "java python go", "analyzer": "shingles_analyzer" } DELETE index_with_synonyms # Index with a synonyms filter PUT index_with_synonyms { "settings": { "analysis": { "filter": { "synonyms_filter":{ "type":"synonym", "synonyms":[ "soccer => football"] } } } } } # Test the index - the output should be "What" "Football" POST index_with_synonyms/_analyze { "text": "What's soccer?", "tokenizer": "standard", "filter": ["synonyms_filter"] } # Index with synonyms filter - reading the synonyms from the code itself # Thanks to Thomas Hill - he mentioned a mistake in my earlier verion - where the analyzer was set to standard. # if you set the type to "standard", then Elasticsearch only looks at the parameters for Standard Analyzer, # such as "stopwords_path". It does NOT look at parameters for a custom analyzer, such as "filter". # Thank you @Thomas Hill! PUT index_with_synonyms_analyzer { "settings": { "analysis": { "analyzer": { "synonyms_analyzer":{ "type":"custom", "tokenizer":"standard", "filter":["synonyms_filter"] } } ,"filter": { "synonyms_filter":{ "type":"synonym", "synonyms":["lol => Laughing out loud"] } } } } } POST index_with_synonyms_analyzer/_analyze { "text":"lol", "analyzer": "synonyms_analyzer" } GET index_with_synonyms/_search { "query": { "match": { "sport": { "query": "football", "analyzer": "synonyms_analyzer" } } } } # Synonyms from a file. # Note I've set the type to be standard and tested with 8.5 version - it seems working. # Should you have any issues, do change it to "custom" as per previous # comments (see line 946) and try it out. PUT index_with_synonyms_from_file_analyzer { "settings": { "analysis": { "analyzer": { "synonyms_analyzer":{ "type":"standard", "filter":["synonyms_from_file_filter"] } }, "filter": { "synonyms_from_file_filter":{ "type":"synonym", "synonyms_path":"synonyms.txt" } } } } } # Create synonyms.txt file: # Make sure a file called "synonyms.txt" is created under # $ELASTICSEARCH_HOME/config with the following contents: # file: synonyms.txt important=>imperative beautiful=>gorgeous # Test the filter - should return imperative POST index_with_synonyms_from_file_analyzer/_analyze { "text": "important", "tokenizer": "standard", "filter": ["synonyms_from_file_filter"] } ================================================ FILE: kibana_scripts/ch08_search_basics.txt ================================================ ## Sample movie index # Create movies index PUT movies { "mappings": { "properties": { "title": { "type": "text", "fields": { "original": { "type": "keyword" } } }, "synopsis": { "type": "text" }, "actors": { "type": "text" }, "director": { "type": "text" }, "rating": { "type": "half_float" }, "release_date": { "type": "date", "format": "dd-MM-yyyy" }, "certificate": { "type": "keyword" }, "genre": { "type": "text" } } } } POST _bulk {"index":{"_index":"movies","_id":"1"}} {"title": "The Shawshank Redemption","synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.","actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"] ,"director":" Frank Darabont ","rating":"9.3","certificate":"R","genre": "Drama "} {"index":{"_index":"movies","_id":"2"}} {"title": "The Godfather","synopsis": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.","actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.2","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"3"}} {"title": "The Dark Knight","synopsis": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","actors": ["Christian Bale", "Heath Ledger", "Aaron Eckhart", "Michael Caine"] ,"director":" Christopher Nolan ","rating":"9.0","certificate":"PG-13","genre": ["Action", "Crime", "Drama"] } {"index":{"_index":"movies","_id":"4"}} {"title": "The Godfather: Part II","synopsis": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.","actors": ["Al Pacino", "Robert De Niro", "Robert Duvall", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":"9.0","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"5"}} {"title": "12 Angry Men","synopsis": "A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.","actors": ["Henry Fonda", "Lee J. Cobb", "Martin Balsam", " John Fiedler"] ,"director":" Sidney Lumet ","rating":"9.0","certificate":"Approved","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"6"}} {"title": "The Lord of the Rings: The Return of the King","synopsis": "Gandalf and Aragorn lead the World of Men against Saurons's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.","actors": ["Elijah Wood", "Viggo Mortensen", "Ian McKellen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.9","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"7"}} {"title": "Pulp Fiction","synopsis": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.","actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson", "Bruce Willis"] ,"director":" Quentin Tarantino ","rating":"8.9","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"8"}} {"title": "Schindler's List","synopsis": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.","actors": ["Liam Neeson", "Ralph Fiennes", "Ben Kingsley", "Caroline Goodall"] ,"director":" Steven Spielberg ","rating":"8.9","certificate":"R","genre": ["Biography", "Drama", "History"] } {"index":{"_index":"movies","_id":"9"}} {"title": "Inception","synopsis": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.","actors": ["Leonardo DiCaprio", "Joseph Gordon-Levitt", "Elliot Page", "Ken Watanabe"] ,"director":" Christopher Nolan ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Sci-Fi"] } {"index":{"_index":"movies","_id":"10"}} {"title": "Fight Club","synopsis": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.","actors": ["Brad Pitt", "Edward Norton", "Meat Loaf", "Zach Grenier"] ,"director":" David Fincher ","rating":"8.8","certificate":"R","genre": "Drama"} {"index":{"_index":"movies","_id":"11"}} {"title": "The Lord of the Rings: The Fellowship of the Ring","synopsis": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.","actors": ["Elijah Wood", "Ian McKellen", "Orlando Bloom", "Sean Bean"] ,"director":" Peter Jackson ","rating":"8.8","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] } {"index":{"_index":"movies","_id":"12"}} {"title": "Forrest Gump","synopsis": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.","actors": ["Tom Hanks", "Robin Wright", "Gary Sinise", "Sally Field"] ,"director":" Robert Zemeckis ","rating":"8.8","certificate":"PG-13","genre": ["Drama", "Romance"] } {"index":{"_index":"movies","_id":"13"}} {"title": "The Good, the Bad and the Ugly","synopsis": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.","actors": ["Clint Eastwood", "Eli Wallach", "Lee Van Cleef", "Aldo Giuffrè"] ,"director":" Sergio Leone ","rating":"8.8","certificate":"R","genre": "Western"} {"index":{"_index":"movies","_id":"14"}} {"title": "The Lord of the Rings: The Two Towers","synopsis": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.","actors": ["Elijah Wood", "Ian McKellen", "Viggo Mortensen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Drama"]} {"index":{"_index":"movies","_id":"15"}} {"title": "The Matrix","synopsis": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.","actors": ["Keanu Reeves", "Laurence Fishburne", "Carrie-Anne Moss", "Hugo Weaving"] ,"director":["Lana Wachowski", "Lilly Wachowski"] ,"rating":"8.7","certificate":"R","genre": ["Action", "Sci-Fi"] } {"index":{"_index":"movies","_id":"16"}} {"title": "Goodfellas","synopsis": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.","actors": ["Robert De Niro", "Ray Liotta", "Joe Pesci", "Lorraine Bracco"] ,"director":" Martin Scorsese ","rating":"8.7","certificate":"R","genre": ["Biography", "Drama", "Crime"] } {"index":{"_index":"movies","_id":"17"}} {"title": "Star Wars: Episode V - The Empire Strikes Back","synopsis": "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.","actors": ["Mark Hamill", "Harrison Ford", "Carrie Fisher", "Billy Dee Williams"] ,"director":" Irvin Kershner ","rating":"8.7","certificate":"PG-13","genre": ["Action", "Adventure", "Fantasy"] } {"index":{"_index":"movies","_id":"18"}} {"title": "One Flew Over the Cuckoo's Nest","synopsis": "A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.","actors": ["Jack Nicholson", "Louise Fletcher", "Michael Berryman", "Peter Brocco"] ,"director":" Milos Forman ","rating":"8.7","certificate":"R","genre": "Drama" } {"index":{"_index":"movies","_id":"19"}} {"title": "Parasite","synopsis": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.","actors": ["Kang-ho Song", "Sun-kyun Lee", "Yeo-jeong Cho", "Woo-sik Choi"] ,"director":" Bong Joon Ho ","rating":"8.6","certificate":"R","genre": ["Comedy", "Drama", "Thriller"] } {"index":{"_index":"movies","_id":"20"}} {"title": "Interstellar","synopsis": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.","actors": ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Mackenzie Foy"] ,"director":" Christopher Nolan ","rating":"8.6","certificate":"PG-13","genre": ["Adventure", "Drama", "Sci-Fi"] } {"index":{"_index":"movies","_id":"21"}} {"title": "City of God","synopsis": "In the slums of Rio, two kids paths diverge as one struggles to become a photographer and the other a kingpin.","actors": ["Alexandre Rodrigues", "Leandro Firmino", "Matheus Nachtergaele", "Phellipe Haagensen"] ,"director": ["Fernando Meirelles", "Kátia Lund"] ,"rating":"8.6","certificate":"R","genre": ["Crime", "Drama"] } {"index":{"_index":"movies","_id":"22"}} {"title": "Spirited Away","synopsis": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.","actors": ["Daveigh Chase", "Suzanne Pleshette", "Miyu Irino", "Rumi Hiiragi"] ,"director":" Hayao Miyazaki ","rating":"8.6","certificate":"PG-13","genre": ["Animation", "Adventure", "Family"]} {"index":{"_index":"movies","_id":"23"}} {"title": "Saving Private Ryan","synopsis": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.","actors": ["Tom Hanks", "Matt Damon", "Tom Sizemore", "Edward Burns"] ,"director":" Steven Spielberg ","rating":"8.6","certificate":"R","genre": ["Drama", "War"] } {"index":{"_index":"movies","_id":"24"}} {"title": "The Green Mile","synopsis": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.","actors": ["Tom Hanks", "Michael Clarke Duncan", "David Morse", "Bonnie Hunt"] ,"director":" Frank Darabont ","rating":"8.6","certificate":"R","genre": ["Crime", "Drama", "Fantasy"] } {"index":{"_index":"movies","_id":"25"}} {"title": "Life Is Beautiful","synopsis": "When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.","actors": ["Roberto Benigni", "Nicoletta Braschi", "Giorgio Cantarini", "Giustino Durano"] ,"director":" Roberto Benigni ","rating":"8.6","certificate":"PG-13","genre": ["Comedy", "Drama", "Romance"]} # Searching for a title GET movies/_search { "query": { "match": { "title": "Godfather" } } } ## Query and filter context: # Query without scoring - query context by default GET movies/_search { "query": { "match": { "title": "Godfather" } } } # Filter context - no score returned GET movies/_search { "query": { "bool": { "filter": [ { "match": { "title": "Godfather" } } ] } } } #Another way to set the filter context GET movies/_search { "query": { "constant_score": { "filter": { "match": { "title": "Godfather" } } } } } # URI search # Search a movie by title GET movies/_search GET movies/_search?q=title:Godfather # Search a movie by multiple titles GET movies/_search?q=title:Godfather Knight Shawshank #Fetch a specific title AND an actor combination GET movies/_search?q=title:Knight AND actors:Bale #Fetch a specific title OR an actor combination GET movies/_search?q=title:Godfather actors:Bale # Setting a default_operator GET movies/_search?q=title:Godfather actors:Bale&default_operator=AND # Additional query parameters GET movies/_search?q=title:Knight actors:(bale AND ledger) rating:(>=9.0 AND <=9.5)&from=0&size=10&explain=true&sort=rating&default_operator=AND GET movies/_search?q=title:Godfather actors:(Brando OR Pacino) rating:(>=9.0 AND <=9.5)&from=0&size=10&explain=true&sort=rating&default_operator=AND GET movies/_search #Query String GET movies/_search { "query": { "query_string": { "default_field": "title", "query": "Knight Redemption Lord Pulp", "default_operator": "OR" } } } # Query DSL sample query GET movies/_search { "query": { "multi_match": { "query": "Lord", "fields": ["synopsis","title"] } } } GET movies/_search { "size": 0, "aggs": { "average_movie_rating": { "avg": { "field": "rating" } } } } # Leaf query GET movies/_search { "query": { "match_phrase": { "synopsis": "A meek hobbit from the shire and eight companions" } } } # Compound query example GET movies/_search { "query": { "bool": { "must": [ {"match": { "title": "Godfather" }} ], "must_not": [ { "range": { "rating": { "lt": 9.0 } }} ], "should": [ { "match": { "actors": "Pacino" }} ], "filter": [ { "term": { "actors": "brando" } } ] } } } # Match query GET movies/_search { "query": { "match": { "director": "Francis" } } } ## Pagination # Query to fetch a specific number of results GET movies/_search { "size": 20, "query": { "match_all": {} } } #Resetting the 10k default size limit # The following query will result in exception # as the result window is too large (greater than 10k results) GET movies/_search { "size": 10001, "query": { "match_all": {} } } #Reset the max results setting PUT movies/_settings { "max_result_window":10001 } # Paginated results using size and from GET movies/_search { "size": 100, "from": 3, "query": { "match_all": {} } } # Highlighting GET movies/_search { "_source": false, "query": { "term": { "title": { "value": "godfather" } } },"highlight": { "fields": { "title": {} } } } # Explanation GET movies/_search { "explain": true, "_source": false, "query": { "match": { "title": "Lord" } } } # Exactly same as above - explains the scores GET movies/_explain/14 { "query":{ "match": { "title": "Lords" } } } ## Sorting # Sort by rating in ascending order GET movies/_search { "size": 10, "query": { "match": { "title": "Godfather" } }, "sort": [{ "rating": {"order": "asc"} } ] } # Sort by score (no sort - default by _score in desc) GET movies/_search { "size": 10, "query": { "match": { "title": "Godfather" } } } # Sort by score - mention the _score in sort GET movies/_search { "size": 10, "query": { "match": { "title": "Godfather" } }, "sort": [ "_score" ] } # Sort by _score in asc GET movies/_search { "size": 10, "query": { "match": { "title": "Godfather" } }, "sort": [ {"_score":{"order":"asc"}} ] } # Sort by a field desc GET movies/_search { "size": 10, "query": { "match": { "genre": "crime" } }, "sort": [ {"rating":{"order":"desc"}} ] } # Sort by multiple fields asc GET movies/_search { "track_scores":true, "size": 10, "query": { "match": { "genre": "crime" } }, "sort": [ {"rating":{"order":"asc"}}, {"release_date":{"order":"asc"}} ] } # Manipulating search responses # Suppressing the source document GET movies/_search { "_source": false, "query": { "match": { "certificate": "R" } } } # Selected fields GET movies/_search { "_source": false, "query": { "match": { "certificate": "R" } }, "fields": [ "title*", "rating" ] } # Source filtering GET movies/_search { "_source": ["title*","synopsis", "rating"], "query": { "match": { "certificate": "R" } } } # Source filtering with a script field GET movies/_search { "_source": ["title*","synopsis", "rating"], "query": { "match": { "certificate": "R" } }, "script_fields": { "top_rated_movie": { "script": { "lang": "painless", "source": "if (doc['rating'].value > 9.0) 'true'; else 'false'" } } } } # Source filtering using includes and excludes GET movies/_search { "_source": { "includes": ["title*","synopsis","genre"], "excludes": ["title.original"] }, "query": { "match": { "certificate": "R" } } } # Return everything except synoposis and actors GET movies/_search { "_source": { "excludes": ["synopsis","actors"] }, "query": { "match": { "certificate": "R" } } } ## Searching across multiple indices # Searching for Pacino movies across all indicies GET _search { "query": { "match": { "actors": "Pacino" } } } # Using _all to indicate every index in the cluster GET _all/_search { "query": { "match": { "actors": "Pacino" } } } # Use a wildcard to denote every index GET */_search { "query": { "match": { "actors": "Pacino" } } } ## Boosting indices # Index a document for this exercise PUT movies_top/_doc/1 { "title": "The Shawshank Redemption", "synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", "actors": [ "Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler" ], "director": " Frank Darabont ", "rating": "9.3", "certificate": "R", "genre": "Drama " } PUT movies_new/_doc/1 { "title": "The Shawshank Redemption", "synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", "actors": [ "Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler" ], "director": " Frank Darabont ", "rating": "9.3", "certificate": "R", "genre": "Drama " } GET movies*/_search { "query": { "match": { "title": "Redemption" } } } GET movies_new/_mapping GET movies*/_search { "indices_boost": [ { "movies": 0.1}, { "movies_new": 0}, { "movies_top": 2.0} ], "query": { "match": { "title": "Redemption" } } } GET movies/_search { "query": { "bool": { "must_not": [ { "match": { "title": "Godfather" } } ] } } } ================================================ FILE: kibana_scripts/ch09_term_level_queries.txt ================================================ DELETE movies # Creating movies index with explicit mapping PUT movies { "mappings": { "properties": { "title": { "type": "text", "fields": { "original": { "type": "keyword" } } }, "synopsis": { "type": "text", "fields": { "original": { "type": "keyword" } } }, "actors": { "type": "text", "fields": { "original": { "type": "keyword" } } }, "director": { "type": "text", "fields": { "original": { "type": "keyword" } } }, "rating": { "type": "half_float" }, "release_date": { "type": "date", "format": "dd-MM-yyyy" }, "certificate": { "type": "keyword", "fields": { "original": { "type": "keyword" } } }, "genre": { "type": "text", "index_prefixes":{}, "fields": { "original": { "type": "keyword" } } } } } } # Insert the movies sample data ## Copy the contents of datasets/top-movies.json and index the movies using bulk API POST _bulk {"index":{"_index":"movies","_id":"1"}} {"title": "The Shawshank Redemption","synopsis": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.","actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"] ,"director":" Frank Darabont ","rating":9.3,"certificate":"R","genre": "Drama ","release_date":"17-02-1995"} {"index":{"_index":"movies","_id":"2"}} {"title": "The Godfather","synopsis": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.","actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":9.2,"certificate":"R","genre": ["Crime", "Drama"] ,"release_date":"14-03-1972"} {"index":{"_index":"movies","_id":"3"}} {"title": "The Dark Knight","synopsis": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","actors": ["Christian Bale", "Heath Ledger", "Aaron Eckhart", "Michael Caine"] ,"director":" Christopher Nolan ","rating":9.0,"certificate":"PG-13","genre": ["Action", "Crime", "Drama"] ,"release_date":"18-07-2008"} {"index":{"_index":"movies","_id":"4"}} {"title": "The Godfather: Part II","synopsis": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.","actors": ["Al Pacino", "Robert De Niro", "Robert Duvall", "Diane Keaton"] ,"director":" Francis Ford Coppola ","rating":9.0,"certificate":"R","genre": ["Crime", "Drama"] ,"release_date":"20-12-1974"} {"index":{"_index":"movies","_id":"5"}} {"title": "12 Angry Men","synopsis": "A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.","actors": ["Henry Fonda", "Lee J. Cobb", "Martin Balsam", " John Fiedler"] ,"director":" Sidney Lumet ","rating":9.0,"certificate":"Approved","genre": ["Crime", "Drama"],"release_date":"10-04-1957" } {"index":{"_index":"movies","_id":"6"}} {"title": "The Lord of the Rings: The Return of the King","synopsis": "Gandalf and Aragorn lead the World of Men against Saurons's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.","actors": ["Elijah Wood", "Viggo Mortensen", "Ian McKellen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":8.9,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] ,"release_date":"06-02-2004"} {"index":{"_index":"movies","_id":"7"}} {"title": "Pulp Fiction","synopsis": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.","actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson", "Bruce Willis"] ,"director":" Quentin Tarantino ","rating":8.9,"certificate":"R","genre": ["Crime", "Drama"] ,"release_date":"14-10-1994"} {"index":{"_index":"movies","_id":"8"}} {"title": "Schindler's List","synopsis": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.","actors": ["Liam Neeson", "Ralph Fiennes", "Ben Kingsley", "Caroline Goodall"] ,"director":" Steven Spielberg ","rating":8.9,"certificate":"R","genre": ["Biography", "Drama", "History"] ,"release_date":"04-07-1994"} {"index":{"_index":"movies","_id":"9"}} {"title": "Inception","synopsis": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.","actors": ["Leonardo DiCaprio", "Joseph Gordon-Levitt", "Elliot Page", "Ken Watanabe"] ,"director":" Christopher Nolan ","rating":8.8,"certificate":"PG-13","genre": ["Action", "Adventure", "Sci-Fi"] ,"release_date":"16-07-2010"} {"index":{"_index":"movies","_id":"10"}} {"title": "Fight Club","synopsis": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.","actors": ["Brad Pitt", "Edward Norton", "Meat Loaf", "Zach Grenier"] ,"director":" David Fincher ","rating":8.8,"certificate":"R","genre": "Drama","release_date":"11-11-1999"} {"index":{"_index":"movies","_id":"11"}} {"title": "The Lord of the Rings: The Fellowship of the Ring","synopsis": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.","actors": ["Elijah Wood", "Ian McKellen", "Orlando Bloom", "Sean Bean"] ,"director":" Peter Jackson ","rating":8.8,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"] ,"release_date":"15-03-2002"} {"index":{"_index":"movies","_id":"12"}} {"title": "Forrest Gump","synopsis": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.","actors": ["Tom Hanks", "Robin Wright", "Gary Sinise", "Sally Field"] ,"director":" Robert Zemeckis ","rating":8.8,"certificate":"PG-13","genre": ["Drama", "Romance"] ,"release_date":"06-07-1994"} {"index":{"_index":"movies","_id":"13"}} {"title": "The Good, the Bad and the Ugly","synopsis": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.","actors": ["Clint Eastwood", "Eli Wallach", "Lee Van Cleef", "Aldo Giuffrè"] ,"director":" Sergio Leone ","rating":8.8,"certificate":"R","genre": "Western","release_date":"23-12-1966"} {"index":{"_index":"movies","_id":"14"}} {"title": "The Lord of the Rings: The Two Towers","synopsis": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.","actors": ["Elijah Wood", "Ian McKellen", "Viggo Mortensen", "Orlando Bloom"] ,"director":" Peter Jackson ","rating":8.7,"certificate":"PG-13","genre": ["Action", "Adventure", "Drama"],"release_date":"28-03-2003"} {"index":{"_index":"movies","_id":"15"}} {"title": "The Matrix","synopsis": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.","actors": ["Keanu Reeves", "Laurence Fishburne", "Carrie-Anne Moss", "Hugo Weaving"] ,"director":["Lana Wachowski", "Lilly Wachowski"] ,"rating":8.7,"certificate":"R","genre": ["Action", "Sci-Fi"] ,"release_date":"16-05-2003"} {"index":{"_index":"movies","_id":"16"}} {"title": "Goodfellas","synopsis": "The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.","actors": ["Robert De Niro", "Ray Liotta", "Joe Pesci", "Lorraine Bracco"] ,"director":" Martin Scorsese ","rating":8.7,"certificate":"R","genre": ["Biography", "Drama", "Crime"],"release_date":"19-09-1990" } {"index":{"_index":"movies","_id":"17"}} {"title": "Star Wars: Episode V - The Empire Strikes Back","synopsis": "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.","actors": ["Mark Hamill", "Harrison Ford", "Carrie Fisher", "Billy Dee Williams"] ,"director":" Irvin Kershner ","rating":8.7,"certificate":"PG-13","genre": ["Action", "Adventure", "Fantasy"] ,"release_date":"21-05-1980"} {"index":{"_index":"movies","_id":"18"}} {"title": "One Flew Over the Cuckoo's Nest","synopsis": "A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.","actors": ["Jack Nicholson", "Louise Fletcher", "Michael Berryman", "Peter Brocco"] ,"director":" Milos Forman ","rating":8.7,"certificate":"R","genre": "Drama" ,"release_date":"19-11-1975"} {"index":{"_index":"movies","_id":"19"}} {"title": "Parasite","synopsis": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.","actors": ["Kang-ho Song", "Sun-kyun Lee", "Yeo-jeong Cho", "Woo-sik Choi"] ,"director":" Bong Joon Ho ","rating":8.6,"certificate":"R","genre": ["Comedy", "Drama", "Thriller"] ,"release_date":"30-05-2019"} {"index":{"_index":"movies","_id":"20"}} {"title": "Interstellar","synopsis": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.","actors": ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Mackenzie Foy"] ,"director":" Christopher Nolan ","rating":8.6,"certificate":"PG-13","genre": ["Adventure", "Drama", "Sci-Fi"] ,"release_date":"07-11-2014"} {"index":{"_index":"movies","_id":"21"}} {"title": "City of God","synopsis": "In the slums of Rio, two kids paths diverge as one struggles to become a photographer and the other a kingpin.","actors": ["Alexandre Rodrigues", "Leandro Firmino", "Matheus Nachtergaele", "Phellipe Haagensen"] ,"director": ["Fernando Meirelles", "Kátia Lund"] ,"rating":8.6,"certificate":"R","genre": ["Crime", "Drama"],"release_date":"30-08-2002" } {"index":{"_index":"movies","_id":"22"}} {"title": "Spirited Away","synopsis": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.","actors": ["Daveigh Chase", "Suzanne Pleshette", "Miyu Irino", "Rumi Hiiragi"] ,"director":" Hayao Miyazaki ","rating":8.6,"certificate":"PG-13","genre": ["Animation", "Adventure", "Family"],"release_date":"20-07-2001"} {"index":{"_index":"movies","_id":"23"}} {"title": "Saving Private Ryan","synopsis": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.","actors": ["Tom Hanks", "Matt Damon", "Tom Sizemore", "Edward Burns"] ,"director":" Steven Spielberg ","rating":8.6,"certificate":"R","genre": ["Drama", "War"] ,"release_date":"21-07-1998"} {"index":{"_index":"movies","_id":"24"}} {"title": "The Green Mile","synopsis": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.","actors": ["Tom Hanks", "Michael Clarke Duncan", "David Morse", "Bonnie Hunt"] ,"director":" Frank Darabont ","rating":8.6,"certificate":"R","genre": ["Crime", "Drama", "Fantasy"] ,"release_date":"06-12-1999"} {"index":{"_index":"movies","_id":"25"}} {"title": "Life Is Beautiful","synopsis": "When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.","actors": ["Roberto Benigni", "Nicoletta Braschi", "Giorgio Cantarini", "Giustino Durano"] ,"director":" Roberto Benigni ","rating":8.6,"certificate":"PG-13","genre": ["Comedy", "Drama", "Romance"],"release_date":"14-09-2012"} # Fetching the movies with a specific rating GET movies/_search { "query": { "term": { "certificate": "R" } } } # Fetching the movies by lowercasing the rating # No results returned GET movies/_search { "query": { "term": { "certificate": "r" } } } # This term query wouldn't return the results GET movies/_search { "query": { "term": { "title": "The Godfather" } } } # Terms query GET movies/_search { "query": { "terms": { "certificate": ["PG-13","R"] } } } # Change the max term count property PUT movies/_settings { "index":{ "max_terms_count":10 } } # Terms lookup DELETE classic_movies PUT classic_movies { "mappings": { "properties": { "title": { "type": "text" }, "director": { "type": "keyword" } } } } # Index three docs PUT classic_movies/_doc/1 { "title":"Jaws", "director":"Steven Spielberg" } PUT classic_movies/_doc/2 { "title":"Jaws II", "director":"Jeannot Szwarc" } PUT classic_movies/_doc/3 { "title":"Ready Player One", "director":"Steven Spielberg" } # Search for terms with director matching with the "path" value # from "classic_movies" index for a document with an ID as 3 (which is "Steven Spielberg) GET classic_movies/_search { "query": { "terms": { "director": { "index":"classic_movies", "id":"3", "path":"director" } } } } # This query to fetches two movies directored by Speilberg # IDs query GET movies/_search { "query": { "ids": { "values": [10,4,6,8] } } } # Terms query fetching IDs GET movies/_search { "query": { "terms": { "_id":[10,4,6,8] } } } # Exists query GET movies/_search { "query": { "exists": { "field": "_id" } } } GET movies/_search { "query": { "exists": { "field": "title" } } } #Fetching documents that miss a field by using bool query PUT top_secret_files/_doc/1 { "code":"Flying Bird", "confidential":true } PUT top_secret_files/_doc/2 { "code":"Cold Rock" } GET top_secret_files/_search { "query": { "bool": { "must_not": [ { "exists": { "field": "confidential" } } ] } } } # Range query GET movies/_search { "query": { "range": { "rating": { "gte": 9.0, "lte": 9.5 } } } } # Fetch movies after 1970 and sort them in asc order GET movies/_search { "query": { "range": { "release_date": { "gte": "01-01-1970" } } }, "sort": [ { "release_date": { "order": "asc" } } ] } # Range query with date math # Before 13th Feb 1995 GET movies/_search { "query": { "range": { "release_date": { "lte": "15-02-1995||-2d" } } } } # Released after 3rd march 2019 GET movies/_search { "query": { "range": { "release_date": { "gte": "01-03-2019||-2d" } } } } # Before 15-March-2022 GET movies/_search { "query": { "range": { "release_date": { "lte": "17-03-2022||-2d" } } } } # Range query with date match using now # Movies from last 4 years GET movies/_search { "query": { "range": { "release_date": { "gte": "now-4y" } } } } # Between now and 4 years ago GET movies/_search { "query": { "range": { "release_date": { "gte": "now-4y", "lte":"now" } } } } # Wildcard Query with a wildcard at the end GET movies/_search { "query": { "wildcard": { "title": { "value": "god*" } } } } # Wildcard Query with a wildcard in middle GET movies/_search { "_source": false, "query": { "wildcard": { "title": { "value": "g*d" } } }, "highlight": { "fields": { "title": {} } } } GET movies/_search { "query": { "wildcard": { "title.original": { "value": "The God*" } } }, "highlight": { "fields": { "title": {} } } } # Switch off the expensive queries PUT _cluster/settings { "transient": { "search.allow_expensive_queries": "false" } } GET movies/_mapping # Prefix query GET movies/_search { "query": { "prefix": { "genre.original": { "value": "Ad" } } },"highlight": { "fields": {"genre.original": {}} } } # Searching for actors with "Mar" as prefix GET movies/_search { "_source": false, "query": { "prefix": { "actors.original": { "value": "Mar" } } }, "highlight": { "fields": { "actors.original": {} } } } #Index prefixes PUT boxoffice_hit_movies { "mappings": { "properties": { "title":{ "type": "text", "index_prefixes":{} } } } } PUT boxoffice_hit_movies/_doc/1 { "title":"Gladiator" } GET boxoffice_hit_movies/_search { "query": { "prefix": { "title": { "value": "gla" } } } } #Index prefixes with custom prefix settings PUT boxoffice_hit_movies_custom_prefix_sizes { "mappings": { "properties": { "title":{ "type": "text", "index_prefixes":{ "min_chars":4, "max_chars":10 } } } } } # Fuzzy query with edit distance of 1 GET movies/_search { "query": { "fuzzy": { "genre": { "value": "rama", "fuzziness": 1 } } }, "highlight": { "fields": { "genre": {} } } } # Fuzzy query with dropping off middle letter GET movies/_search { "query": { "fuzzy": { "genre": { "value": "drma", "fuzziness": 1 } } } } # Fuzzy query that has two letters missing GET movies/_search { "query": { "fuzzy": { "genre": { "value": "ama", "fuzziness": 2 } } } } ================================================ FILE: kibana_scripts/ch10_full_text_queries.txt ================================================ # Full-text queries # BULK import books ## Copy the datasets/books.txt file into Kibana's DevTools and execute the bulk update # Match queries ##Match all query GET books/_search { "query": { "match_all": {} } } GET books/_search { "query": { "match": { "author": "Cay" } } } # Match query searching Java titles GET books/_search { "query": { "match": { "title": "Java" } } } # Match query searching for a set of words (like a sentence) GET books/_search { "query": { "match": { "title": { "query": "Java Complete Guide" } } }, "highlight": { "fields": { "title": {} } } } # Same as above query but specifying OR operator explicitly GET books/_search { "query": { "match": { "title": { "query": "Java Complete Guide", "operator": "OR" } } } } # Specifying AND operator explicitly GET books/_search { "query": { "match": { "title": { "query": "Java Complete Guide", "operator": "AND" } } } } # Matching at least two words GET books/_search { "query": { "match": { "title": { "query": "Java Complete Guide", "operator": "OR", "minimum_should_match": 2 } } } } # Matching on an incorrect title (spelling mistake) - no results GET books/_search { "query": { "match": { "title": { "query": "Kava" } } } } # Matching on an incorrect title (spelling mistake) - with fuzziness- postive results GET books/_search { "query": { "match": { "title": { "query": "Kava", "fuzziness": 1 } } } } # Match phrase query GET books/_search { "query": { "match_phrase": { "synopsis": "book for every Java programmer" } } } # Match phrase query with slop - missing one word GET books/_search { "query": { "match_phrase": { "synopsis": { "query": "book every Java programmer", "slop": 1 } } } } # Match phrase query with jumbled up words will not work - even with slop GET books/_search { "query": { "match_phrase": { "synopsis": { "query": "for every Java programmer book", "slop": 1 } } } } ##Match all query with a pre-defined score GET books/_search { "query": { "match_all": { "boost": 2 } } } # Match phrase prefix GET books/_search { "query": { "match_phrase_prefix": { "tags": { "query": "concepts and found" } } }, "highlight": { "fields": { "tags": {} } } } # Match phrase prefix with slop - omitting "and" GET books/_search { "query": { "match_phrase_prefix": { "tags": { "query": "concepts found", "slop":1 } } } } # Multi-match query GET books/_search { "_source": false, "query": { "multi_match": { "query": "Java", "fields": [ "title", "synopsis", "tags" ] } }, "highlight": { "fields": { "title": {}, "tags": {} } } } # Best fields GET books/_search { "_source": false, "query": { "multi_match": { "query": "Design Patterns", "type": "best_fields", "fields": ["title","synopsis"] } }, "highlight": { "fields": { "tags": {}, "title": {} } } } # Best fields - with a tie breaker GET books/_search { "_source": false, "query": { "multi_match": { "query": "Design Patterns", "type": "best_fields", "fields": ["title","synopsis"], "tie_breaker": 0.5 } }, "highlight": { "fields": { "tags": {}, "title": {} } } } # 6.9938974 + 0.5 *(2.9220228 2.7801032 2.6008778) # dis_max query GET books/_search { "_source": false, "query": { "dis_max": { "queries": [ {"match": {"title": "Design Patterns"}}, {"match": {"synopsis": "Design Patterns"}}] } } } # dis_max query GET books/_search { "_source": false, "query": { "dis_max": { "queries": [ {"match": {"title": "Design Patterns"}}, {"match": {"synopsis": "Design Patterns"}}], "tie_breaker": 0.5 } }, "highlight": { "fields": { "title": {}, "synopsis": {}, "tags": {} } } } # Boosting individual queries GET books/_search { "query": { "multi_match": { "query": "C# guide", "fields": ["title^2", "tags"] } } } # Query string GET books/_search { "query": { "query_string": { "query": "author:Bert AND edition:2 and release_date>=2000-01-01" } } } # Query string with a no field specified GET books/_search { "query": { "query_string": { "query": "Patterns" } }, "highlight": { "fields": { "title": {}, "synopsis": {}, "tags": {} } } } # Query string across multiple fields GET books/_search { "query": { "query_string": { "query": "Patterns", "fields": ["title","synopsis","tags"] } } } # Query string with a default field GET books/_search { "query": { "query_string": { "query": "Design Patterns", "default_field": "title" } } } # Query string with an AND operator GET books/_search { "query": { "query_string": { "query": "Design Patterns", "default_field": "title", "default_operator": "AND" } } } # Query string with a phrase GET books/_search { "query": { "query_string": { "query": "\"making the code better\"", "default_field": "synopsis" } } } # Query string with a phrase and a slop GET books/_search { "query": { "query_string": { "query": "\"making code better\"", "default_field": "synopsis", "phrase_slop": 1 } } } # Query string with a fuzziness GET books/_search { "query": { "query_string": { "query": "Pattenrs~", "default_field": "title" } } } # Query string with a fuzziness with one edit distance GET books/_search { "query": { "query_string": { "query": "Pattenrs~1", "default_field": "title" } } } # Query string with a fuzziness with two corrections GET books/_search { "query": { "query_string": { "query": "tterns~", "default_field": "title" } } } # Illegal query GET books/_search { "query": { "query_string": { "query": "title::Java " } } } # Illegal query GET books/_search { "query": { "query_string": { "query": "title:Java\"" } } } # Simple query string GET books/_search { "query": { "simple_query_string": { "query": "Java + Cay" } } } # Simple query string - no issue with the incorrect syntax GET books/_search { "query": { "simple_query_string": { "query": "title:Java\"" } } } # Combined fields GET books/_search { "query": { "simple_query_string":{ "query":"Java", "fields":["title","synopsis"] } } } # Combined fields GET books/_search { "query": { "combined_fields":{ "query":"Java", "fields":["title","synopsis"] } } } ================================================ FILE: kibana_scripts/ch11_compound_queries.txt ================================================ ## Compound Queries # Create products schema is here: # https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/products_mapping.txt # Create products schema PUT products { "mappings": { "properties": { "brand": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "colour": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "energy_rating": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "images": { "type": "text" }, "model": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "overview": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "price": { "type": "double" }, "product": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "resolution": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "size": { "type": "text" }, "type": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "user_ratings": { "type": "double" } } } } # Index products using bulk API # Prodcuts data is here: https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/products.txt # Searching for TVs using bool query GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } } ] } } } # TVs in a price range GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "range": { "price": { "gte": 700, "lte": 800 } } } ] } } } # TVs in a price range with a particular colour GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "range": { "price": { "gte": 1000, "lte": 2000 } } }, { "terms": { "colour": [ "silver", "black" ] } } ] } } } # TVs in a 4k resolution range with a particular colour GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "term": { "resolution": "4k" } }, { "terms": { "colour": [ "silver", "black" ] } } ] } } } ## Searching for all TVs but not of specified brands GET products/_search { "query": { "bool": { "must_not": [ { "terms": { "brand.keyword": [ "Samsung", "Philips" ] } } ] } } } # Fetching only TVs for specifying the brand using must_not query clause GET products/_search { "query": { "bool": { "must_not": [ { "terms": { "brand.keyword": [ "Philips", "Samsung" ] } } ], "must": [ { "match": { "product": "TV" } } ] } } } # Enhancing the must_not queries GET products/_search { "query": { "bool": { "must_not": [ { "terms": { "brand.keyword": [ "Philips", "Samsung" ] } }, { "range": { "user_ratings": { "lte": 4.0 } } }, { "match": { "colour": "black" } } ], "must": [ { "match": { "product": "TV" } }, { "term": { "resolution": { "value": "4k" } } }, { "range": { "price": { "gte": 500, "lte": 700 } } } ] } } } ## Should clause # This will fetch eihter brand matching "LG" or product "TV" GET products/_search { "_source": ["product","brand", "overview","price"], "query": { "bool": { "should": [ { "range": { "price": { "gte": 500, "lte": 1000 } } }, { "match_phrase_prefix": { "overview": "4k ultra hd" } } ] } } } # This will fetch LG TVs using a must query - note the score GET products/_search { "_source": ["product","brand"], "query": { "bool": { "must": [#A { "match": { "product": "TV" } }, { "match": { "brand": "LG" } } ] } } } # Now, let's add the shoud clause - adding should clause boosts the score GET products/_search { "_source": ["product","brand","overview", "price"], "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "match": { "brand": "LG" } } ], "should": [ { "range": { "price": { "gte": 500, "lte": 1000 } } }, { "match_phrase_prefix": { "overview": "4k ultra hd" } } ] } } } # Adding should clause with minimu_should_match GET products/_search { "_source": ["product","brand","overview", "price","colour"], "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "match": { "brand": "LG" } } ], "should": [ { "range": { "price": { "gte": 500, "lte": 1000 } } }, { "match": { "colour": "silver" } }, { "match_phrase_prefix": { "overview": "4kk" } } ], "minimum_should_match": 1 } } } # Filter clause GET products/_search { "_source": ["brand","product","colour"], "query": { "bool": { "filter": [ { "term": { "product.keyword": "TV" } }, { "range": { "price": { "gte": 500, "lte": 1000 } } } ] } } } # Filter clause with must GET products/_search { "_source": ["brand","product","colour","price"], "query": { "bool": { "must": [ { "match": { "brand": "LG" } } ], "filter": [ { "range": { "price": { "gte": 500, "lte": 1000 } } } ] } } } #All clauses combined GET products/_search { "query": { "bool": { "must": [ { "match": { "brand": "LG" } } ], "must_not": [ { "term": { "colour": "silver" } } ], "should": [ { "match": { "energy_rating": "A++" } }, { "term": { "type": "Fridge Freezer" } } ], "filter": [ { "range": { "price": { "gte": 500, "lte": 1000 } } } ] } } } #Named queries for "All clauses combined" query GET products/_search { "_source": ["product", "brand"], "query": { "bool": { "must": [ { "match": { "brand": { "query": "LG", "_name": "must_match_brand_query" } } } ], "must_not": [ { "match": { "colour.keyword": { "query":"black", "_name":"must_not_colour_query" } } } ], "should": [ { "term": { "type.keyword": { "value": "Frost Free Fridge Freezer", "_name":"should_term_type_query" } } }, { "match": { "energy_rating": { "query": "A++", "_name":"should_match_energy_rating_query" } } } ], "filter": [ { "range": { "price": { "gte": 500, "lte": 1000, "_name":"filter_range_price_query" } } } ] } } } #Constant score GET products/_search { "query": { "constant_score": { "filter": { "range": { "price": { "gte": 1000, "lte": 2000 } } }, "boost": 5.0 } } } # Filter query GET products/_search { "query": { "bool": { "filter": [ { "range": { "user_ratings": { "gte": 4, "lte": 5 } } } ] } } } # Filter query GET products/_search { "query": { "constant_score": { "filter": { "range": { "user_ratings": { "gte": 4, "lte": 5 } } }, "boost": 5.0 } } } # Bool query with a constant score GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } }, { "constant_score": { "filter": { "term": { "colour": "black" } }, "boost": 3.5 } } ] } } } # Bool query with a constant score GET products/_search { "query": { "bool": { "must": [ { "match": { "product": "TV" } } ], "should": [ { "term": { "brand.keyword": { "value": "Samsung" } } }, { "constant_score": { "filter": { "range": { "user_ratings": { "gte": 4, "lte": 5 } } }, "boost": 2.5 } } ], "minimum_should_match": 1 } } } # Boosting query GET products/_search { "size": 40, "_source": ["product", "price","colour"], "query": { "boosting": { "positive": { "term": { "product":"tv" } }, "negative": { "range": { "price": { "gte": 2500 } } }, "negative_boost": 0.5 } } } # Boosting query combined with bool queries GET products/_search { "size": 40, "_source": ["product", "price","colour","brand"], "query": { "boosting": { "positive": { "bool": { "must": [ { "match": { "product": "TV" } } ] } }, "negative": { "bool": { "must": [ { "match": { "brand": "Sony" } } ] } }, "negative_boost": 0.5 } } } # Multi_match GET products/_search { "query": { "multi_match": { "query": "smart", "fields": ["type","overview"] } }, "highlight": { "fields": { "type": {}, "overview": {} } } } GET products/_search { "_source": ["type","overview"], "query": { "dis_max": { "queries": [{ "match": { "type": "smart tv" } }, { "match": { "overview": "smart tv" } }, { "match": { "product": "smart tv" } }],"tie_breaker": 0.5 } } } # Term search with a bog-standard term query - see the score:1.6376086 GET products/_search { "query": { "term": { "product": { "value": "tv" } } } } #Function score - wraping the term query - score is 1.6376086 GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } } } } } #Function score - random score GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "random_score": {} } } } #Function score - random score boosted by a factor GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "random_score": {}, "boost": 3 } } } #Function score - random score - with seed and field GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "random_score": { "seed": 10, "field":"user_ratings" } } } } #Function score - random score boosted by a factor GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "random_score": {}, "boost": 3 } } } #Function score - scripted score based on user_ratings value GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "script_score": { "script": { "source":"_score * doc['user_ratings'].value + params['goodluck_factor']", "params": { "goodluck_factor":10 } } } } } } # Using script_score function to define a scoring function GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "script_score": { "script": { "source":"_score * doc['user_ratings'].value * params['factor']", "params": { "factor":3 } } } } } } #Field value factor GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "field_value_factor": { "field": "user_ratings", "factor": 2, "modifier": "square" } } } } # Multiple functions made up of weight and field value factor functions GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "functions": [ { "filter": { "term": { "brand": "LG" } }, "weight": 3 }, { "filter": { "range": { "user_ratings": { "gte": 4.5, "lte": 5 } } }, "field_value_factor": { "field": "user_ratings", "factor": 1.2, "modifier": "square" } } ], "score_mode": "avg", "boost_mode": "sum" } } } # Multiple functions - random score, weight and field value factor GET products/_search { "query": { "function_score": { "query": { "term": { "product": "tv" } }, "functions": [ { "filter": { "match": { "brand": "samsung" } }, "random_score": {} }, { "filter": { "match_phrase": { "overview": "4K ultra hd" } }, "weight": 2 }, { "filter": { "range": { "user_ratings": { "gte": 4.5, "lte": 5 } } }, "field_value_factor": { "field": "user_ratings", "factor": 2, "modifier": "square" } } ], "score_mode": "avg", "boost_mode": "multiply" } } } ================================================ FILE: kibana_scripts/ch12_advanced_queries.txt ================================================ # Advanced search: compound queries # Creating mapping for bus_stops with geo_point type PUT bus_stops { "mappings": { "properties": { "name":{ "type": "text" }, "location":{ "type": "geo_point" } } } } # As string (lat, lon) POST bus_stops/_doc { "name":"London Bridge Station", "location":"51.07, 0.08" } # As WKT point (lat, lon) POST bus_stops/_doc { "text": "London Victoria Station", "location" : "POINT (51.49 0.14)" } # As location object POST bus_stops/_doc { "text": "Leciester Square Station", "location" : { "lon":-0.12, "lat":51.50 } } # As an array (lon, lat) POST bus_stops/_doc { "text": "Westminster Station", "location" : [51.54, 0.23] } # As a geohash POST bus_stops/_doc { "text": "Hyde Park Station", "location" : "gcpvh2bg7sff" } # Create a mapping for restaurants PUT restaurants { "mappings": { "properties": { "name":{ "type": "text" }, "town_centre":{ "type": "geo_point" }, "location":{ "type": "geo_point" }, "category":{ "type":"text" }, "hygenie_rating":{ "type": "short" }, "borough":{ "type":"text" } } } } ## INDEX the restaurants dataset # Copy the contents from https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/london_restaurants.txt to here and execute the bulk API call. # Matching restaurant locations in a georectangle using geo_bounding_box query GET restaurants/_search { "query": { "geo_bounding_box": { "location": { "top_left": { "lat": 52, "lon": 0.2 }, "bottom_right": { "lat": 49, "lon": 0.1 } } } } } # Geo bounding box query GET restaurants/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter":{ "geo_bounding_box": { "location": { "top_left": { "lat": 52.00, "lon": 0.20 }, "bottom_right": { "lat": 49.00, "lon": 0.10 } } } } } } } # Geo bounding box query - location lon/lat as an array # Note the array takes in lat followed by lon whereas the above query takes the opposite way GET restaurants/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter": [ { "geo_bounding_box": { "location": { "top_left": [ 0.04, 52.00], "bottom_right": [0.08, 49] } } } ] } } } # WKT (well known text) GET restaurants/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter": [ { "geo_bounding_box": { "location": { "wkt":"BBOX(0.08, 0.04, 52.00, 49.00)" } } } ] } } } # Geoshapes PUT cafes { "mappings": { "properties": { "name":{ "type": "text" }, "address": { "type": "geo_shape" } } } } # Indexing a cafe in GeoJSON format PUT cafes/_doc/1 { "name":"Costa Coffee", "address" : { "type" : "Point", "coordinates" : [0.17, 51.57] } } # Indexing a cafe in WKT format PUT /cafes/_doc/2 { "name":"Costa Coffee", "address" : "POINT (0.17 51.57)" } # Matching restaurants in a georectangle GET restaurants/_search { "query": { "geo_bounding_box": { "location": { "top_left": { "lat": 52, "lon": 0.2 }, "bottom_right": { "lat": 49, "lon": 0.1 } } } } } # Geo bounding query on a geo_shape field GET cafes/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter": [ { "geo_bounding_box": { "address": { "top_left": { "lat": 52.00, "lon": 0.04 }, "bottom_right": { "lat": 49.00, "lon": 0.20 } } } } ] } } } # Geoquery with location represented as WKT GET restaurants/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter": [ { "geo_bounding_box": { "location": { "wkt":"BBOX(0.08, 0.04, 52.00, 49.00)" } } } ] } } } GET restaurants/_search #Geo distance query GET restaurants/_search { "query": { "geo_distance": { "distance": "175 km", "location": { "lat": 50.00, "lon": 0.10 } } } } GET cafes/_search { "query": { "geo_distance": { "distance": "175 km", "address": { "lat": 50.00, "lon": 0.10 } } } } #Geo shape query GET cafes/_search { "query": { "bool": { "must": [ { "match_all": {} } ], "filter": [ { "geo_shape": { "address": { "shape": { "type": "envelope", "coordinates": [ [ 0.1, 55 ], [ 1, 45 ] ] }, "relation": "within" } } } ] } } } #Shape queries #Mapping for a floor_area field as shape data types PUT floors { "mappings": { "properties": { "floor_area":{ "type": "shape" } } } } # Indexing a point PUT floors/_doc/1 { "floor_area":{ "type":"point", "coordinates":[12,14] } } PUT floors/_doc/2 { "floor_area":{ "type":"multipoint", "coordinates":[[12,14],[13,16]] } } GET floors/_search { "query": { "shape":{ "floor_area":{ "shape":{ "type":"envelope", "coordinates":[[10,16],[14,10]] } } } } } DELETE myshapes #Mapping for a shape field as shape data types PUT myshapes { "mappings": { "properties": { "name":{ "type": "text" }, "myshape":{ "type": "shape" } } } } # Indexing a point PUT myshapes/_doc/1 { "name":"A point", "myshape":{ "type":"point", "coordinates":[12,14] } } # Indexing a multipoint PUT myshapes/_doc/2 { "name":"A multipoint shape", "myshape":{ "type":"multipoint", "coordinates":[[12,14],[13,16]] } } # Searching for the shapes in the bounds constructed by the envelope GET myshapes/_search { "query": { "shape":{ "myshape":{ "shape":{ "type":"envelope", "coordinates":[[10,16],[14,10]] } } } } } # Span queries PUT quotes { "mappings": { "properties": { "author":{ "type": "text" }, "quote":{ "type": "text" } } } } # Index a quote PUT quotes/_doc/1 { "author":"Isaac Newton", "quote":"Plato is my friend Aristotle is my friend but my greatest friend is truth." } # Fetch the document with the given term in the first n (end) number of spans GET quotes/_search { "query": { "span_first": { "match": { "span_term": { "quote": "aristotle" } }, "end": 5 } } } # Span near query GET quotes/_search { "query": { "span_near": { "clauses": [ { "span_term": { "quote": "plato" } }, { "span_term": { "quote": "aristotle" } } ], "slop": 3, "in_order": true } } } # Span near query wiht three clauses GET quotes/_search { "query": { "span_near": { "clauses": [ { "span_term": { "quote": "plato" } }, { "span_term": { "quote": "aristotle" } }, { "span_term": { "quote": "truth" } } ], "slop": 20, "in_order": true } } } # Span within - friend between plato and aristotle GET quotes/_search { "query": { "span_within": { "little": { "span_term": { "quote": "friend" } }, "big": { "span_near": { "clauses": [ { "span_term": { "quote": "plato" } }, { "span_term": { "quote": "aristotle" } } ], "slop": 3, "in_order": true } } } } } # Span within - aristotle between friend and friend GET quotes/_search { "query": { "span_within": { "little": { "span_term": { "quote": "aristotle" } }, "big": { "span_near": { "clauses": [ { "span_term": { "quote": "friend" } }, { "span_term": { "quote": "friend" } } ], "slop": 4, "in_order": true } } } } } GET quotes/_search { "query": { "span_within": { "little": { "span_term": { "quote": "aristotle" } }, "big": { "span_near": { "clauses": [ { "span_term": { "quote": "friend" } }, { "span_term": { "quote": "friend" } }, { "span_term": { "quote": "truth" } } ], "slop": 20, "in_order": true } } } } } # Span-or query GET quotes/_search { "query": { "span_or": { "clauses": [ { "span_term": { "quote": "plato" } }, { "span_term": { "quote": "friend" } }, { "span_term": { "quote": "aristotle" } } ] } } } # Specialized queries ## Distance_feature query for geo_point field ## Creating a universities index with geo_point attribute PUT universities { "mappings": { "properties": { "name":{ "type": "text" }, "location":{ "type": "geo_point" } } } } # Indexing few universities PUT universities/_doc/1 { "name":"London School of Economics (LSE)", "location":[0.1165, 51.5144] } PUT universities/_doc/2 { "name":"Imperial College London", "location":[0.1749, 51.4988] } PUT universities/_doc/3 { "name":"University of Oxford", "location":[1.2544, 51.7548] } PUT universities/_doc/4 { "name":"University of Cambridge", "location":[0.1132, 52.2054] } # Searching for universities nearer to London Bridge - returns LSE GET universities/_search { "query": { "distance_feature": { "field": "location", "origin": [-0.0860, 51.5048], "pivot": "10 km" } } } # Nearer to Knightsbridge - returns Imperial college GET universities/_search { "query": { "distance_feature": { "field": "location", "origin": [0.1604, 51.5016], "pivot": "10 km" } } } ## Distance_feature query for date field # Creating an iPhone index with release_date field PUT iphones { "mappings": { "properties": { "name":{ "type": "text" }, "release_date":{ "type": "date", "format": "dd-MM-yyyy" } } } } GET iphones/_mapping # Indexing a few documents PUT iphones/_doc/1 { "name":"iPhone", "release_date":"29-06-2007" } PUT iphones/_doc/2 { "name":"iPhone 12", "release_date":"23-10-2020" } PUT iphones/_doc/3 { "name":"iPhone 13", "release_date":"24-09-2021" } PUT iphones/_doc/4 { "name":"iPhone 12 Mini", "release_date":"13-11-2020" } GET iphones/_search # Searching for iphones - boost those that were released 30 days around 1st-september-2021 GET iphones/_search { "query": { "distance_feature": { "field": "release_date", "origin": "01-09-2021", "pivot": "30 d" } } } # Searching for iphones - in a bool query (just to see the score) GET iphones/_search { "query": { "bool": { "must": [ { "match": { "name": "12" } } ] } } } # Searching for iphones - in a bool query - with a distance_feature should query GET iphones/_search { "query": { "bool": { "must": [ { "match": { "name": "12" } } ], "should": [ { "distance_feature": { "field": "release_date", "origin": "12-11-2020", "pivot": "2 d" } } ] } } } # More like this query ## More like this query on quotes index PUT quotes/_doc/1 { "autor":"Isaac Newton", "quote":"Plato is my friend Aristotle is my friend but my greatest friend is truth.", "type":"truth" } PUT quotes/_doc/2 { "autor":"Oscar Wilde", "quote":"The truth is rarely pure and simple", "type":"truth" } PUT quotes/_doc/3 { "autor":"Mark Twain", "quote":"If you tell the truth, you don't have to remember anything", "type":"truth" } PUT quotes/_doc/4 { "autor":"Albert Einstien", "quote":"Imagination is more important than Knowledge", "type":"imagination" } PUT quotes/_doc/5 { "autor":"Muhammed Ali", "quote":"The man who has no imagination has no wings", "type":"imagination" } # More like this search query GET quotes/_search { "query": { "more_like_this": { "fields": [ "type","quote" ], "like": "no imagination has no wings", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq":1 } } } # More like this query on profiles index PUT profiles/_doc/1 { "name":"John Smith", "profile":"John Smith is a capable carpenter" } PUT profiles/_doc/2 { "name":"John Smith Patterson", "profile":"John Smith Patterson is a pretty plumber" } PUT profiles/_doc/3 { "name":"Smith Sotherby", "profile":"Smith Sotherby is a gentle painter" } PUT profiles/_doc/4 { "name":"Frances Sotherby", "profile":"Frances Sotherby is a gentleman" } # More like this search query GET profiles/_search { "query": { "more_like_this": { "fields": [ "name", "profile" ], "like": "Sotherby", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq":1 } } } # More like this on tech_books PUT tech_books/_doc/1 { "name":"Effective Java", "tags":["Java","Software engineering", "Programming"] } PUT tech_books/_doc/2 { "name":"Python crash course", "tags":["Python","Software engineering", "Programming"] } PUT tech_books/_doc/3 { "name":"Java Core Fundamentals", "tags":["Java","Software"] } # More like this search query GET tech_books/_search { "query": { "more_like_this": { "fields": [ "name","tags" ], "like": "programming", "min_doc_freq": 1, "min_term_freq": 1, "max_query_terms": 12 } } } # More like this query on iphones index GET iphones/_search { "query": { "more_like_this": { "fields": [ "name" ], "like": "12", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq": 1 } } } # Pinned query GET iphones/_search { "query": { "pinned":{ "ids":["1","3"], "organic":{ "match":{ "name":"12" } } } } } ## More like this query on quotes index PUT quotes/_doc/1 { "autor":"Isaac Newton", "quote":"Plato is my friend Aristotle is my friend but my greatest friend is truth.", "type":"truth" } PUT quotes/_doc/2 { "autor":"Oscar Wilde", "quote":"The truth is rarely pure and simple", "type":"truth" } PUT quotes/_doc/3 { "autor":"Mark Twain", "quote":"If you tell the truth, you don't have to remember anything", "type":"truth" } PUT quotes/_doc/4 { "autor":"Albert Einstien", "quote":"Imagination is more important than Knowledge", "type":"imagination" } PUT quotes/_doc/5 { "autor":"Muhammed Ali", "quote":"The man who has no imagination has no wings", "type":"imagination" } # More like this search query GET quotes/_search { "query": { "more_like_this": { "fields": [ "type","quote" ], "like": "no imagination has no wings", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq":1 } } } # More like this query on profiles index PUT profiles/_doc/1 { "name":"John Smith", "profile":"John Smith is a capable carpenter" } PUT profiles/_doc/2 { "name":"John Smith Patterson", "profile":"John Smith Patterson is a pretty plumber" } PUT profiles/_doc/3 { "name":"Smith Sotherby", "profile":"Smith Sotherby is a gentle painter" } PUT profiles/_doc/4 { "name":"Frances Sotherby", "profile":"Frances Sotherby is a gentleman" } # More like this search query GET profiles/_search { "query": { "more_like_this": { "fields": [ "name", "profile" ], "like": "Sotherby", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq":1 } } } # Percolator queries PUT tech_books/_doc/1 { "name":"Effective Java", "tags":["Java","Software engineering", "Programming"] } PUT tech_books/_doc/2 { "name":"Elasticsearch in Action", "tags":["Elasticsearch","Software engineering", "Programming"] } PUT tech_books/_doc/3 { "name":"Java Core Fundamentals", "tags":["Java","Software"] } GET tech_books/_search { "query": { "match": { "name": "Python" } } } PUT tech_books_percolator { "mappings": { "properties": { "query": { "type": "percolator" }, "name": { "type": "text" }, "tags": { "type": "text" } } } } PUT tech_books_percolator/_doc/1 { "query" : { "match":{ "name":"Python" } } } PUT tech_books/_doc/4 { "name":"Python in Action", "tags":["Python","Software Programming"] } GET tech_books_percolator/_search { "query": { "percolate": { "field": "query", "document": { "name":"Python in Action", "tags":["Python","Software Programming"] } } } } GET tech_books_percolator/_search { "query": { "percolate": { "field": "query", "document": { "name":"Python in Action" } } } } # More like this search query GET tech_books/_search { "query": { "more_like_this": { "fields": [ "name","tags" ], "like": "programming", "min_doc_freq": 1, "min_term_freq": 1, "max_query_terms": 12 } } } # More like this query on iphones index GET iphones/_search { "query": { "more_like_this": { "fields": [ "name" ], "like": "12", "min_term_freq": 1, "max_query_terms": 12, "min_doc_freq": 1 } } } ================================================ FILE: kibana_scripts/ch13_aggregations.txt ================================================ # Aggregations ## Bulk indexing TV sales PUT tv_sales/_bulk {"index":{"_id":"1"}} {"brand": "Samsung","name":"UHD TV","size_inches":65,"price_gbp":1400,"sales":17} {"index":{"_id":"2"}} {"brand":"Samsung","name":"UHD TV","size_inches":45,"price_gbp":1000,"sales":11} {"index":{"_id":"3"}} {"brand":"Samsung","name":"UHD TV","size_inches":23,"price_gbp":999,"sales":14} {"index":{"_id":"4"}} {"brand":"LG","name":"8K TV","size_inches":65,"price_gbp":1499,"sales":13} {"index":{"_id":"5"}} { "brand":"LG","name":"4K TV","size_inches":55,"price_gbp":1100,"sales":31} {"index":{"_id":"6"}} {"brand":"Philips","name":"8K TV","size_inches":65,"price_gbp":1800,"sales":23} {"index":{"_id":"7"}} {"name":"8K TV","size_inches":65,"price_gbp":2000,"sales":23} {"index":{"_id":"9"}} {"name":"8K TV","size_inches":65,"price_gbp":2000,"sales":23,"best_seller":true} {"index":{"_id":"10"}} {"name":"4K TV","size_inches":75,"price_gbp":2200,"sales":14,"best_seller":false} # METRIC Aggregations # Finding the number of documents using value_count metric GET tv_sales/_search { "size": 0, "aggs": { "total-values": { "value_count": { "field": "brand.keyword" } } } } # Finding the average price of the mobile GET tv_sales/_search { "size": 0, "aggs": { "tv_average_price": { "avg": { "field": "price_gbp" } } } } #Average sales GET tv_sales/_search { "size": 0, "aggs": { "average_price": { "avg": { "field": "sales" } } } } # Sum of all the TVs GET tv_sales/_search { "size": 0, "aggs": { "tv_total_price": { "sum": { "field": "price_gbp" } } } } # Top price of a TV amongst all TVs GET tv_sales/_search { "aggs": { "tv_top_price": { "min": { "field": "price_gbp" } } } } # Best seller TV (maximum sales) GET tv_sales/_search { "size": 0, "aggs": { "tv_sales": { "max": { "field": "sales" } } } } # minimum metric What's the lowest price we have in our index? GET tv_sales/_search { "size": 0, "aggs": { "lowest_price": { "min": { "field": "price_gbp" } } } } #All stats GET tv_sales/_search { "size": 0, "aggs": { "all_stats":{ "stats": { "field": "price_gbp" } } } } #Extended stats GET tv_sales/_search { "size": 0, "aggs": { "extended_stats":{ "extended_stats": { "field": "price_gbp" } } } } # Cardinality - unique values of a given field GET tv_sales/_search { "size": 0, "aggs": { "unique_tvs": { "cardinality": { "field": "brand.keyword" } } } } # BUCKET Aggregations ## To index books, copy : https://github.com/madhusudhankonda/elasticsearch-in-action/blob/main/datasets/books.txt # Histogram agg GET books/_search { "size": 0, "aggs": { "ratings_histogram": { "histogram": { "field": "amazon_rating", "interval": 1 } } } } # Histogram on dates - using calendar_interval GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "calendar_interval": "year" } } } } # Histogram on with one year interval same as the above GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "calendar_interval": "1y" } } } } # ERROR: Histogram on dates - using calendar_interval with 4q (NOT ALLOWED) GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "calendar_interval": "4q" } } } } # Histogram on with one a fixed interval of 2 years (730 days) GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "fixed_interval": "730d" } } } } # Note the bucket key when using calendar_interval as a year vs fixed_interval as 365d: GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "calendar_interval": "1y" } } } } GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "fixed_interval": "365d" } } } } # Child (nested) data historgram GET books/_search { "size":0, "aggs": { "release_date_histogram": { "date_histogram": { "field": "release_date", "calendar_interval": "1y" }, "aggs": { "avg_rating_per_bucket": { "avg": { "field": "amazon_rating" } } } } } } # Child (nested) data historgram GET tv_sales/_search?size=0 { "aggs": { "sales_histogram": { "histogram": { "field": "sales", "interval": "10" }, "aggs": { "total_sum": { "sum": { "field": "price_gbp" } } } } } } ## RANGE aggregation GET books/_search { "size": 0, "aggs": { "book_ratings_range": { "range": { "field": "amazon_rating", "ranges": [ { "from": 1, "to": 4 }, { "from": 4, "to": 5 } ] } } } } # Terms aggregation GET books/_search?size=0 { "aggs": { "author_book_count": { "terms": { "field": "author.keyword" } } } } # Terms aggregation with a custom size GET books/_search?size=0 { "aggs": { "author_book_count": { "terms": { "field": "author.keyword", "size": 25 } } } } # Multi-terms: fetching documents with author and title GET books/_search?size=0 { "aggs": { "author_title_map": { "multi_terms": { "terms": [ { "field": "author.keyword" }, { "field": "title.keyword" } ] } } } } #Significant terms: GET books/_search GET books/_search?size=0 { "aggs": { "NAME": { "significant_terms": { "field": "title.keyword" } } } } ## Pipeline Aggregations PUT coffee_sales/_doc/1 { "date":"2022-09-01", "sales":{ "cappuccino":23, "latte":12, "americano":9, "tea":7 }, "price":{ "cappuccino":2.50, "latte":2.40, "americano":2.10, "tea":1.50 } } PUT coffee_sales/_doc/2 { "date":"2022-09-02", "sales":{ "cappuccino":40, "latte":16, "americano":19, "tea":15 }, "price":{ "cappuccino":2.50, "latte":2.40, "americano":2.10, "tea":1.50 } } # Peak time coffee sales PUT peak_coffee_sales/_doc/1 { "date":"2022-09-01", "hour":7, "sales":{ "cappuccino":123, "latte":123, "americano":95, "tea":37 } } PUT peak_coffee_sales/_doc/2 { "date":"2022-09-01", "hour":8, "sales":{ "cappuccino":243, "latte":428, "americano":149, "tea":60 } } PUT peak_coffee_sales/_doc/3 { "date":"2022-09-01", "hour":9, "sales":{ "cappuccino":199, "latte":132, "americano":85, "tea":34 } } PUT peak_coffee_sales/_doc/1 { "date":"2022-09-02", "hour":7, "sales":{ "cappuccino":223, "latte":323, "americano":195, "tea":97 } } PUT peak_coffee_sales/_doc/2 { "date":"2022-09-02", "hour":8, "sales":{ "cappuccino":443, "latte":628, "americano":749, "tea":402 } } PUT peak_coffee_sales/_doc/3 { "date":"2022-09-02", "hour":9, "sales":{ "cappuccino":328, "latte":272, "americano":192, "tea":93 } } # Coffee sales without a pipeline agg: GET coffee_sales/_search { "size": 0, "aggs": { "coffee_sales_by_day": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "cappucino_sales": { "sum": { "field": "sales.cappuccino" } } } } } } # Two sigbling aggregations GET coffee_sales/_search { "size": 0, "aggs": { "coffee_date_histogram": { "date_histogram": { "field": "date", "calendar_interval": "1d" } }, "total_sale_of_americanos":{ "sum": { "field": "sales.americano" } } } } # Two sigbling aggregations GET coffee_sales/_search { "size": 0, "aggs": { "coffee_date_histogram": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "total_sum_americano": { "sum": { "field": "price.americano" } }, "cum_sum": { "cumulative_sum": { "buckets_path": "total_sum_americano" } } } }, "total_sale_of_americanos": { "sum": { "field": "sales.americano" } } } } # Cumulative sum of cappuccinos sold GET coffee_sales/_search { "size": 0, "aggs": { "sales_by_coffee": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "cappuccino_sales": { "sum": { "field": "sales.cappuccino" } }, "total_cappuccinos": { "cumulative_sum": { "buckets_path": "cappuccino_sales" } } } } } } # Max sum of cappuccinos sold GET coffee_sales/_search { "size": 0, "aggs": { "sales_by_coffee": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "cappuccino_sales": { "sum": { "field": "sales.cappuccino" } } } }, "highest_cappuccino_sales_bucket":{ "max_bucket": { "buckets_path": "sales_by_coffee>cappuccino_sales" } } } } # Min sum of cappuccinos sold GET coffee_sales/_search { "size": 0, "aggs": { "sales_by_coffee": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "cappucino_sales": { "sum": { "field": "sales.cappuccino" } } } }, "lowest_cappucino_sales_bucket":{ "min_bucket": { "buckets_path": "sales_by_coffee>cappucino_sales" } } } } # Sum of cappuccinos sold GET coffee_sales/_search { "size": 0, "aggs": { "sales_by_coffee": { "date_histogram": { "field": "date", "calendar_interval": "1d" }, "aggs": { "cappucino_sales": { "sum": { "field": "sales.cappuccino" } } } }, "top_bucket":{ "sum_bucket": { "buckets_path": "sales_by_coffee>cappucino_sales" } } } } ================================================ FILE: kibana_scripts/ch13_aggregations_index.txt ================================================ PUT mobile_phones { "mappings": { "properties": { "3G": { "type": "boolean" }, "4G": { "type": "boolean" }, "battery_capacity_mAh": { "type": "long" }, "bluetooth": { "type": "boolean" }, "brand": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "front_camera": { "type": "long" }, "gps": { "type": "boolean" }, "id": { "type": "long" }, "internal_storage_GB": { "type": "integer" }, "model": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "number_of_sims": { "type": "byte" }, "operating_system": { "type": "text" }, "price_gbp": { "type": "float" }, "price_usd": { "type": "float" }, "processor": { "type": "byte" }, "ram_memory_mb": { "type": "long" }, "rear_camera": { "type": "long" }, "resolution_x": { "type": "long" }, "resolution_y": { "type": "long" }, "screen_size_inches": { "type": "float" }, "touchscreen": { "type": "boolean" }, "wifi": { "type": "boolean" } } } } ================================================ FILE: kibana_scripts/ch14_administration.txt ================================================ # Chapter 14: Adminstration PUT chats { "settings": { "number_of_shards": 1, "number_of_replicas": 1 } } GET _cluster/allocation/explain { "index": "chats", "shard": 0, "primary": false } GET chats/_settings PUT chats/_settings { "number_of_replicas": 2 } # Register a shanshot - make sure path.repo is set in the elasticsearch.yml file - check Chapter 14 PUT _snapshot/es_cluster_snapshot_repository { "type": "fs", "settings": { "location": "/volumes/es_snapshots" } } PUT _snapshot/es_cluster_snapshot_repository { "type": "fs", "settings": { "location": "/tmp/es_snapshots" } } # Creating a custom snapshot to backup only movies and reviews indices PUT _snapshot/es_cluster_snapshot_repository/custom_prod_snapshots { "indices": ["*movies*","*reviews*"] } # Taking a snapshot with some metadata PUT _snapshot/es_cluster_snapshot_repository/custom_prod_snapshots_with_metadata { "indices": ["*movies*","*reviews*", "-*.old"], "metadata":{ "reason":"user request", "incident_id":"ID12345", "user":"mkonda" } } # Fetch snapshot repository GET _snapshot # Get the snapshot status GET _snapshot/_status # GEt the status of the current snapshot GET _snapshot/es_cluster_snapshot_repository/_current # Restoring POST _snapshot/es_cluster_snapshot_repository/custom_prod_snapshots/_restore { "indices":["*movies*"] } # DELETE a snapshot DELETE _snapshot/es_cluster_snapshot_repository/custom_prod_snapshots ## SLM # Creating a daily backup on a few indicies PUT _slm/policy/prod_cluster_daily_backups { "name":"", "schedule": "0 0 0 * * ?", "repository": "es_cluster_snapshot_repository", "config": { "indices":["*movies*", "*reviews*"], "include_global_state": false, "ignore_unavailable": false }, "retention":{ "expire_after":"7d" } } GET _cluster/settings PUT _cluster/settings { "transient": { "logger.org.elasticsearch.index":"DEBUG" } } PUT _cluster/settings { "persistent": { "logger.org.elasticsearch.index":"DEBUG", "logger.org.elasticsearch.http":"TRACE" } } ================================================ FILE: kibana_scripts/ch_15_performance_and_trouble_shooting.txt ================================================ # Performance and Troubleshooting # Indexing a doc PUT programming_books1/_doc/1 { "title":"Elasticsearch in Action", "synopsis":"A straightforward, hands-on, example driven, action book" } # Searching across multiple fields GET programming_books1/_search { "query": { "multi_match": { "query": "Elasticsearch hands-on example driven", "fields": ["title","synopsis"] } } } # Index with copy_to field PUT programming_books2 { "mappings": { "properties": { "title":{ "type": "text", "copy_to": "title_synopsis" }, "synopsis":{ "type": "text", "copy_to": "title_synopsis" }, "title_synopsis":{ "type": "text" } } } } # Indexing a book - only two fields PUT programming_books2/_doc/1 { "title":"Elasticsearch in Action", "synopsis":"A straightforward, hands-on, example driven, action book" } # Match query against the title_synopsis field GET programming_books2/_search { "query": { "match": { "title_synopsis": { "query": "Elasticsearch hands-on example driven", "operator": "OR" } } } } DELETE programming_books3 # multi-field mapping PUT programming_books3 { "mappings": { "properties": { "title":{ "type": "text", "fields": { "raw":{ "type":"keyword" } } } } } } # Indexing a document PUT programming_books3/_doc/1 { "title":"Elasticsearch in Action" } # Searching on a keyword field GET programming_books3/_search { "query": { "match": { "title.raw": "Elasticsearch in Action" } } } # Custom refresh setting - 1 min PUT programming_books3/_settings { "index":{ "refresh_interval":"1m" } } # Turning off refresh activity completely PUT programming_books3/_settings { "index":{ "refresh_interval":-1 } } # Index a sample document PUT programming_books3/_doc/10 { "title":"Elasticsearch for Java Developers", "synopsis":"Elasticsearch meets Java" } # If you search for this - you should return no result. # As we switched off the refresh - it shouldn't be available in search GET programming_books3/_search { "query": { "match": { "title": "Elasticsearch Java" } } } # Forcing refresh on the index POST programming_books3/_refresh # Fetch the hot threads GET _nodes/hot_threads # Fetch all the thread-pools GET _nodes/thread_pool # Fetch all the thread-pools usign _cat API GET /_cat/thread_pool/?v&h=name,active,size,type GET _cluster/health # Allocation API GET _cluster/allocation/explain # Allocation explain API on an individual index GET _cluster/allocation/explain { "index": "programming_books2", "shard": 0, "primary": true, "current_node": "mkmac.local" } # Getting nodes info ## Fetch all nodes GET _nodes GET _nodes/process GET _cat/nodes?v=true&s=cpu:desc # Fetching individual node cpu/memory stats GET _nodes/stats/os?filter_path=nodes.*.os # Watermark thresholds ## Chanding the low-watermark PUT _cluster/settings { "transient": { "cluster.routing.allocation.disk.watermark.low":"80%" } } ## Chanding the high watermark PUT _cluster/settings { "transient": { "cluster.routing.allocation.disk.watermark.high":"85%" } } ## Chanding the flood-stage watermark PUT _cluster/settings { "transient": { "cluster.routing.allocation.disk.watermark.flood_stage":"90%" } } # Setting all thresholds in one-go PUT _cluster/settings { "transient": { "cluster.routing.allocation.disk.watermark.low":"80%", "cluster.routing.allocation.disk.watermark.high":"85%", "cluster.routing.allocation.disk.watermark.flood_stage":0.90 } } GET _cluster/settings # Fetching circuit breaker settings GET _nodes/stats/breaker