/gsmarena/devices/search
curl --request POST \
--url https://api.anysite.io/api/gsmarena/devices/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 35,
"timeout": 300,
"query": "<string>",
"colour": "<string>",
"brands": [],
"availability": [],
"bands_2g": [],
"bands_3g": [],
"bands_4g": [],
"bands_5g": [],
"sim_types": [],
"form_factors": [],
"protection_ratings": [],
"body_backs": [],
"body_frames": [],
"chipsets": [],
"main_camera_counts": [],
"camera_flashes": [],
"fingerprints": [],
"wlan": [],
"bluetooth": [],
"dual_sim": false,
"esim": false,
"hdr_display": false,
"billion_colour_display": false,
"main_camera_ois": false,
"telephoto_camera": false,
"ultrawide_camera": false,
"multiple_selfie_cameras": false,
"selfie_camera_ois": false,
"selfie_flash": false,
"popup_selfie_camera": false,
"under_display_selfie_camera": false,
"headphone_jack": false,
"stereo_speakers": false,
"accelerometer": false,
"gyroscope": false,
"compass": false,
"proximity_sensor": false,
"barometer": false,
"heart_rate_sensor": false,
"gps": false,
"nfc": false,
"infrared_port": false,
"fm_radio": false,
"silicon_carbon_battery": false,
"removable_battery": false,
"has_editorial_review": false,
"year_min": 2047,
"year_max": 2047,
"price_eur_min": 1,
"price_eur_max": 1,
"height_mm_min": 1,
"height_mm_max": 1,
"width_mm_min": 1,
"width_mm_max": 1,
"thickness_mm_min": 1,
"thickness_mm_max": 1,
"weight_g_min": 1,
"weight_g_max": 1,
"cpu_cores_min": 2,
"cpu_cores_max": 2,
"ram_mb_min": 1,
"storage_mb_min": 1,
"display_pixels_min": 1,
"display_pixels_max": 1,
"display_inches_min": 1,
"display_inches_max": 1,
"display_density_min": 1,
"display_density_max": 1,
"refresh_rate_min": 1,
"main_camera_mp_min": 1,
"aperture_f_min": 1,
"aperture_f_max": 1,
"video_lines_min": 1,
"selfie_camera_mp_min": 1,
"battery_mah_min": 1,
"battery_mah_max": 1,
"wired_charging_w_min": 1,
"wired_charging_w_max": 1,
"wireless_charging_w_min": 1,
"wireless_charging_w_max": 1,
"sort": "Popularity"
}
'import requests
url = "https://api.anysite.io/api/gsmarena/devices/search"
payload = {
"count": 35,
"timeout": 300,
"query": "<string>",
"colour": "<string>",
"brands": [],
"availability": [],
"bands_2g": [],
"bands_3g": [],
"bands_4g": [],
"bands_5g": [],
"sim_types": [],
"form_factors": [],
"protection_ratings": [],
"body_backs": [],
"body_frames": [],
"chipsets": [],
"main_camera_counts": [],
"camera_flashes": [],
"fingerprints": [],
"wlan": [],
"bluetooth": [],
"dual_sim": False,
"esim": False,
"hdr_display": False,
"billion_colour_display": False,
"main_camera_ois": False,
"telephoto_camera": False,
"ultrawide_camera": False,
"multiple_selfie_cameras": False,
"selfie_camera_ois": False,
"selfie_flash": False,
"popup_selfie_camera": False,
"under_display_selfie_camera": False,
"headphone_jack": False,
"stereo_speakers": False,
"accelerometer": False,
"gyroscope": False,
"compass": False,
"proximity_sensor": False,
"barometer": False,
"heart_rate_sensor": False,
"gps": False,
"nfc": False,
"infrared_port": False,
"fm_radio": False,
"silicon_carbon_battery": False,
"removable_battery": False,
"has_editorial_review": False,
"year_min": 2047,
"year_max": 2047,
"price_eur_min": 1,
"price_eur_max": 1,
"height_mm_min": 1,
"height_mm_max": 1,
"width_mm_min": 1,
"width_mm_max": 1,
"thickness_mm_min": 1,
"thickness_mm_max": 1,
"weight_g_min": 1,
"weight_g_max": 1,
"cpu_cores_min": 2,
"cpu_cores_max": 2,
"ram_mb_min": 1,
"storage_mb_min": 1,
"display_pixels_min": 1,
"display_pixels_max": 1,
"display_inches_min": 1,
"display_inches_max": 1,
"display_density_min": 1,
"display_density_max": 1,
"refresh_rate_min": 1,
"main_camera_mp_min": 1,
"aperture_f_min": 1,
"aperture_f_max": 1,
"video_lines_min": 1,
"selfie_camera_mp_min": 1,
"battery_mah_min": 1,
"battery_mah_max": 1,
"wired_charging_w_min": 1,
"wired_charging_w_max": 1,
"wireless_charging_w_min": 1,
"wireless_charging_w_max": 1,
"sort": "Popularity"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 35,
timeout: 300,
query: '<string>',
colour: '<string>',
brands: [],
availability: [],
bands_2g: [],
bands_3g: [],
bands_4g: [],
bands_5g: [],
sim_types: [],
form_factors: [],
protection_ratings: [],
body_backs: [],
body_frames: [],
chipsets: [],
main_camera_counts: [],
camera_flashes: [],
fingerprints: [],
wlan: [],
bluetooth: [],
dual_sim: false,
esim: false,
hdr_display: false,
billion_colour_display: false,
main_camera_ois: false,
telephoto_camera: false,
ultrawide_camera: false,
multiple_selfie_cameras: false,
selfie_camera_ois: false,
selfie_flash: false,
popup_selfie_camera: false,
under_display_selfie_camera: false,
headphone_jack: false,
stereo_speakers: false,
accelerometer: false,
gyroscope: false,
compass: false,
proximity_sensor: false,
barometer: false,
heart_rate_sensor: false,
gps: false,
nfc: false,
infrared_port: false,
fm_radio: false,
silicon_carbon_battery: false,
removable_battery: false,
has_editorial_review: false,
year_min: 2047,
year_max: 2047,
price_eur_min: 1,
price_eur_max: 1,
height_mm_min: 1,
height_mm_max: 1,
width_mm_min: 1,
width_mm_max: 1,
thickness_mm_min: 1,
thickness_mm_max: 1,
weight_g_min: 1,
weight_g_max: 1,
cpu_cores_min: 2,
cpu_cores_max: 2,
ram_mb_min: 1,
storage_mb_min: 1,
display_pixels_min: 1,
display_pixels_max: 1,
display_inches_min: 1,
display_inches_max: 1,
display_density_min: 1,
display_density_max: 1,
refresh_rate_min: 1,
main_camera_mp_min: 1,
aperture_f_min: 1,
aperture_f_max: 1,
video_lines_min: 1,
selfie_camera_mp_min: 1,
battery_mah_min: 1,
battery_mah_max: 1,
wired_charging_w_min: 1,
wired_charging_w_max: 1,
wireless_charging_w_min: 1,
wireless_charging_w_max: 1,
sort: 'Popularity'
})
};
fetch('https://api.anysite.io/api/gsmarena/devices/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/gsmarena/devices/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'count' => 35,
'timeout' => 300,
'query' => '<string>',
'colour' => '<string>',
'brands' => [
],
'availability' => [
],
'bands_2g' => [
],
'bands_3g' => [
],
'bands_4g' => [
],
'bands_5g' => [
],
'sim_types' => [
],
'form_factors' => [
],
'protection_ratings' => [
],
'body_backs' => [
],
'body_frames' => [
],
'chipsets' => [
],
'main_camera_counts' => [
],
'camera_flashes' => [
],
'fingerprints' => [
],
'wlan' => [
],
'bluetooth' => [
],
'dual_sim' => false,
'esim' => false,
'hdr_display' => false,
'billion_colour_display' => false,
'main_camera_ois' => false,
'telephoto_camera' => false,
'ultrawide_camera' => false,
'multiple_selfie_cameras' => false,
'selfie_camera_ois' => false,
'selfie_flash' => false,
'popup_selfie_camera' => false,
'under_display_selfie_camera' => false,
'headphone_jack' => false,
'stereo_speakers' => false,
'accelerometer' => false,
'gyroscope' => false,
'compass' => false,
'proximity_sensor' => false,
'barometer' => false,
'heart_rate_sensor' => false,
'gps' => false,
'nfc' => false,
'infrared_port' => false,
'fm_radio' => false,
'silicon_carbon_battery' => false,
'removable_battery' => false,
'has_editorial_review' => false,
'year_min' => 2047,
'year_max' => 2047,
'price_eur_min' => 1,
'price_eur_max' => 1,
'height_mm_min' => 1,
'height_mm_max' => 1,
'width_mm_min' => 1,
'width_mm_max' => 1,
'thickness_mm_min' => 1,
'thickness_mm_max' => 1,
'weight_g_min' => 1,
'weight_g_max' => 1,
'cpu_cores_min' => 2,
'cpu_cores_max' => 2,
'ram_mb_min' => 1,
'storage_mb_min' => 1,
'display_pixels_min' => 1,
'display_pixels_max' => 1,
'display_inches_min' => 1,
'display_inches_max' => 1,
'display_density_min' => 1,
'display_density_max' => 1,
'refresh_rate_min' => 1,
'main_camera_mp_min' => 1,
'aperture_f_min' => 1,
'aperture_f_max' => 1,
'video_lines_min' => 1,
'selfie_camera_mp_min' => 1,
'battery_mah_min' => 1,
'battery_mah_max' => 1,
'wired_charging_w_min' => 1,
'wired_charging_w_max' => 1,
'wireless_charging_w_min' => 1,
'wireless_charging_w_max' => 1,
'sort' => 'Popularity'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/gsmarena/devices/search"
payload := strings.NewReader("{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/gsmarena/devices/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/gsmarena/devices/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": 123,
"url": "<string>",
"name": "<string>",
"@type": "GsmarenaDeviceCard",
"brand": "<string>",
"model": "<string>",
"image": "<string>",
"summary": "<string>",
"announced": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/gsmarena
/gsmarena/devices/search
Search the GSMArena device catalogue with the site’s own Phone Finder filters: manufacturer, market status, cellular bands, SIM format, body shape and materials, ingress rating, operating system, chipset, memory card slot, display technology, cutout, cameras, sensors, connectivity, battery and charging, plus numeric ranges for year, price, dimensions, weight, cores, RAM, storage, display and camera figures. Returns device cards with the numeric id, page URL, name, manufacturer, model and image.
Price: 1 credit
POST
/
api
/
gsmarena
/
devices
/
search
/gsmarena/devices/search
curl --request POST \
--url https://api.anysite.io/api/gsmarena/devices/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 35,
"timeout": 300,
"query": "<string>",
"colour": "<string>",
"brands": [],
"availability": [],
"bands_2g": [],
"bands_3g": [],
"bands_4g": [],
"bands_5g": [],
"sim_types": [],
"form_factors": [],
"protection_ratings": [],
"body_backs": [],
"body_frames": [],
"chipsets": [],
"main_camera_counts": [],
"camera_flashes": [],
"fingerprints": [],
"wlan": [],
"bluetooth": [],
"dual_sim": false,
"esim": false,
"hdr_display": false,
"billion_colour_display": false,
"main_camera_ois": false,
"telephoto_camera": false,
"ultrawide_camera": false,
"multiple_selfie_cameras": false,
"selfie_camera_ois": false,
"selfie_flash": false,
"popup_selfie_camera": false,
"under_display_selfie_camera": false,
"headphone_jack": false,
"stereo_speakers": false,
"accelerometer": false,
"gyroscope": false,
"compass": false,
"proximity_sensor": false,
"barometer": false,
"heart_rate_sensor": false,
"gps": false,
"nfc": false,
"infrared_port": false,
"fm_radio": false,
"silicon_carbon_battery": false,
"removable_battery": false,
"has_editorial_review": false,
"year_min": 2047,
"year_max": 2047,
"price_eur_min": 1,
"price_eur_max": 1,
"height_mm_min": 1,
"height_mm_max": 1,
"width_mm_min": 1,
"width_mm_max": 1,
"thickness_mm_min": 1,
"thickness_mm_max": 1,
"weight_g_min": 1,
"weight_g_max": 1,
"cpu_cores_min": 2,
"cpu_cores_max": 2,
"ram_mb_min": 1,
"storage_mb_min": 1,
"display_pixels_min": 1,
"display_pixels_max": 1,
"display_inches_min": 1,
"display_inches_max": 1,
"display_density_min": 1,
"display_density_max": 1,
"refresh_rate_min": 1,
"main_camera_mp_min": 1,
"aperture_f_min": 1,
"aperture_f_max": 1,
"video_lines_min": 1,
"selfie_camera_mp_min": 1,
"battery_mah_min": 1,
"battery_mah_max": 1,
"wired_charging_w_min": 1,
"wired_charging_w_max": 1,
"wireless_charging_w_min": 1,
"wireless_charging_w_max": 1,
"sort": "Popularity"
}
'import requests
url = "https://api.anysite.io/api/gsmarena/devices/search"
payload = {
"count": 35,
"timeout": 300,
"query": "<string>",
"colour": "<string>",
"brands": [],
"availability": [],
"bands_2g": [],
"bands_3g": [],
"bands_4g": [],
"bands_5g": [],
"sim_types": [],
"form_factors": [],
"protection_ratings": [],
"body_backs": [],
"body_frames": [],
"chipsets": [],
"main_camera_counts": [],
"camera_flashes": [],
"fingerprints": [],
"wlan": [],
"bluetooth": [],
"dual_sim": False,
"esim": False,
"hdr_display": False,
"billion_colour_display": False,
"main_camera_ois": False,
"telephoto_camera": False,
"ultrawide_camera": False,
"multiple_selfie_cameras": False,
"selfie_camera_ois": False,
"selfie_flash": False,
"popup_selfie_camera": False,
"under_display_selfie_camera": False,
"headphone_jack": False,
"stereo_speakers": False,
"accelerometer": False,
"gyroscope": False,
"compass": False,
"proximity_sensor": False,
"barometer": False,
"heart_rate_sensor": False,
"gps": False,
"nfc": False,
"infrared_port": False,
"fm_radio": False,
"silicon_carbon_battery": False,
"removable_battery": False,
"has_editorial_review": False,
"year_min": 2047,
"year_max": 2047,
"price_eur_min": 1,
"price_eur_max": 1,
"height_mm_min": 1,
"height_mm_max": 1,
"width_mm_min": 1,
"width_mm_max": 1,
"thickness_mm_min": 1,
"thickness_mm_max": 1,
"weight_g_min": 1,
"weight_g_max": 1,
"cpu_cores_min": 2,
"cpu_cores_max": 2,
"ram_mb_min": 1,
"storage_mb_min": 1,
"display_pixels_min": 1,
"display_pixels_max": 1,
"display_inches_min": 1,
"display_inches_max": 1,
"display_density_min": 1,
"display_density_max": 1,
"refresh_rate_min": 1,
"main_camera_mp_min": 1,
"aperture_f_min": 1,
"aperture_f_max": 1,
"video_lines_min": 1,
"selfie_camera_mp_min": 1,
"battery_mah_min": 1,
"battery_mah_max": 1,
"wired_charging_w_min": 1,
"wired_charging_w_max": 1,
"wireless_charging_w_min": 1,
"wireless_charging_w_max": 1,
"sort": "Popularity"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 35,
timeout: 300,
query: '<string>',
colour: '<string>',
brands: [],
availability: [],
bands_2g: [],
bands_3g: [],
bands_4g: [],
bands_5g: [],
sim_types: [],
form_factors: [],
protection_ratings: [],
body_backs: [],
body_frames: [],
chipsets: [],
main_camera_counts: [],
camera_flashes: [],
fingerprints: [],
wlan: [],
bluetooth: [],
dual_sim: false,
esim: false,
hdr_display: false,
billion_colour_display: false,
main_camera_ois: false,
telephoto_camera: false,
ultrawide_camera: false,
multiple_selfie_cameras: false,
selfie_camera_ois: false,
selfie_flash: false,
popup_selfie_camera: false,
under_display_selfie_camera: false,
headphone_jack: false,
stereo_speakers: false,
accelerometer: false,
gyroscope: false,
compass: false,
proximity_sensor: false,
barometer: false,
heart_rate_sensor: false,
gps: false,
nfc: false,
infrared_port: false,
fm_radio: false,
silicon_carbon_battery: false,
removable_battery: false,
has_editorial_review: false,
year_min: 2047,
year_max: 2047,
price_eur_min: 1,
price_eur_max: 1,
height_mm_min: 1,
height_mm_max: 1,
width_mm_min: 1,
width_mm_max: 1,
thickness_mm_min: 1,
thickness_mm_max: 1,
weight_g_min: 1,
weight_g_max: 1,
cpu_cores_min: 2,
cpu_cores_max: 2,
ram_mb_min: 1,
storage_mb_min: 1,
display_pixels_min: 1,
display_pixels_max: 1,
display_inches_min: 1,
display_inches_max: 1,
display_density_min: 1,
display_density_max: 1,
refresh_rate_min: 1,
main_camera_mp_min: 1,
aperture_f_min: 1,
aperture_f_max: 1,
video_lines_min: 1,
selfie_camera_mp_min: 1,
battery_mah_min: 1,
battery_mah_max: 1,
wired_charging_w_min: 1,
wired_charging_w_max: 1,
wireless_charging_w_min: 1,
wireless_charging_w_max: 1,
sort: 'Popularity'
})
};
fetch('https://api.anysite.io/api/gsmarena/devices/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/gsmarena/devices/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'count' => 35,
'timeout' => 300,
'query' => '<string>',
'colour' => '<string>',
'brands' => [
],
'availability' => [
],
'bands_2g' => [
],
'bands_3g' => [
],
'bands_4g' => [
],
'bands_5g' => [
],
'sim_types' => [
],
'form_factors' => [
],
'protection_ratings' => [
],
'body_backs' => [
],
'body_frames' => [
],
'chipsets' => [
],
'main_camera_counts' => [
],
'camera_flashes' => [
],
'fingerprints' => [
],
'wlan' => [
],
'bluetooth' => [
],
'dual_sim' => false,
'esim' => false,
'hdr_display' => false,
'billion_colour_display' => false,
'main_camera_ois' => false,
'telephoto_camera' => false,
'ultrawide_camera' => false,
'multiple_selfie_cameras' => false,
'selfie_camera_ois' => false,
'selfie_flash' => false,
'popup_selfie_camera' => false,
'under_display_selfie_camera' => false,
'headphone_jack' => false,
'stereo_speakers' => false,
'accelerometer' => false,
'gyroscope' => false,
'compass' => false,
'proximity_sensor' => false,
'barometer' => false,
'heart_rate_sensor' => false,
'gps' => false,
'nfc' => false,
'infrared_port' => false,
'fm_radio' => false,
'silicon_carbon_battery' => false,
'removable_battery' => false,
'has_editorial_review' => false,
'year_min' => 2047,
'year_max' => 2047,
'price_eur_min' => 1,
'price_eur_max' => 1,
'height_mm_min' => 1,
'height_mm_max' => 1,
'width_mm_min' => 1,
'width_mm_max' => 1,
'thickness_mm_min' => 1,
'thickness_mm_max' => 1,
'weight_g_min' => 1,
'weight_g_max' => 1,
'cpu_cores_min' => 2,
'cpu_cores_max' => 2,
'ram_mb_min' => 1,
'storage_mb_min' => 1,
'display_pixels_min' => 1,
'display_pixels_max' => 1,
'display_inches_min' => 1,
'display_inches_max' => 1,
'display_density_min' => 1,
'display_density_max' => 1,
'refresh_rate_min' => 1,
'main_camera_mp_min' => 1,
'aperture_f_min' => 1,
'aperture_f_max' => 1,
'video_lines_min' => 1,
'selfie_camera_mp_min' => 1,
'battery_mah_min' => 1,
'battery_mah_max' => 1,
'wired_charging_w_min' => 1,
'wired_charging_w_max' => 1,
'wireless_charging_w_min' => 1,
'wireless_charging_w_max' => 1,
'sort' => 'Popularity'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/gsmarena/devices/search"
payload := strings.NewReader("{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/gsmarena/devices/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/gsmarena/devices/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 35,\n \"timeout\": 300,\n \"query\": \"<string>\",\n \"colour\": \"<string>\",\n \"brands\": [],\n \"availability\": [],\n \"bands_2g\": [],\n \"bands_3g\": [],\n \"bands_4g\": [],\n \"bands_5g\": [],\n \"sim_types\": [],\n \"form_factors\": [],\n \"protection_ratings\": [],\n \"body_backs\": [],\n \"body_frames\": [],\n \"chipsets\": [],\n \"main_camera_counts\": [],\n \"camera_flashes\": [],\n \"fingerprints\": [],\n \"wlan\": [],\n \"bluetooth\": [],\n \"dual_sim\": false,\n \"esim\": false,\n \"hdr_display\": false,\n \"billion_colour_display\": false,\n \"main_camera_ois\": false,\n \"telephoto_camera\": false,\n \"ultrawide_camera\": false,\n \"multiple_selfie_cameras\": false,\n \"selfie_camera_ois\": false,\n \"selfie_flash\": false,\n \"popup_selfie_camera\": false,\n \"under_display_selfie_camera\": false,\n \"headphone_jack\": false,\n \"stereo_speakers\": false,\n \"accelerometer\": false,\n \"gyroscope\": false,\n \"compass\": false,\n \"proximity_sensor\": false,\n \"barometer\": false,\n \"heart_rate_sensor\": false,\n \"gps\": false,\n \"nfc\": false,\n \"infrared_port\": false,\n \"fm_radio\": false,\n \"silicon_carbon_battery\": false,\n \"removable_battery\": false,\n \"has_editorial_review\": false,\n \"year_min\": 2047,\n \"year_max\": 2047,\n \"price_eur_min\": 1,\n \"price_eur_max\": 1,\n \"height_mm_min\": 1,\n \"height_mm_max\": 1,\n \"width_mm_min\": 1,\n \"width_mm_max\": 1,\n \"thickness_mm_min\": 1,\n \"thickness_mm_max\": 1,\n \"weight_g_min\": 1,\n \"weight_g_max\": 1,\n \"cpu_cores_min\": 2,\n \"cpu_cores_max\": 2,\n \"ram_mb_min\": 1,\n \"storage_mb_min\": 1,\n \"display_pixels_min\": 1,\n \"display_pixels_max\": 1,\n \"display_inches_min\": 1,\n \"display_inches_max\": 1,\n \"display_density_min\": 1,\n \"display_density_max\": 1,\n \"refresh_rate_min\": 1,\n \"main_camera_mp_min\": 1,\n \"aperture_f_min\": 1,\n \"aperture_f_max\": 1,\n \"video_lines_min\": 1,\n \"selfie_camera_mp_min\": 1,\n \"battery_mah_min\": 1,\n \"battery_mah_max\": 1,\n \"wired_charging_w_min\": 1,\n \"wired_charging_w_max\": 1,\n \"wireless_charging_w_min\": 1,\n \"wireless_charging_w_max\": 1,\n \"sort\": \"Popularity\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": 123,
"url": "<string>",
"name": "<string>",
"@type": "GsmarenaDeviceCard",
"brand": "<string>",
"model": "<string>",
"image": "<string>",
"summary": "<string>",
"announced": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required range:
1 <= x <= 70Required range:
20 <= x <= 1500Minimum string length:
1Minimum string length:
1Available options:
Acer, alcatel, Allview, Amazon, Amoi, Apple, Archos, Asus, AT&T, Benefon, BenQ, BenQ-Siemens, Bird, BlackBerry, Blackview, BLU, Bosch, BQ, Casio, Cat, Celkon, Chea, Coolpad, Cubot, Dell, Doogee, EE, Emporia, Energizer, Ericsson, Eten, Fairphone, Fujitsu Siemens, Garmin-Asus, Gigabyte, Gionee, Google, Haier, HMD, Honor, HP, HTC, Huawei, i-mate, i-mobile, Icemobile, Infinix, Innostream, iNQ, Intex, itel, Jolla, Karbonn, Kyocera, Lava, LeEco, Lenovo, LG, Maxon, Maxwest, Meizu, Micromax, Microsoft, Mitac, Mitsubishi, Modu, Motorola, MWg, NEC, Neonode, NIU, Nokia, Nothing, Nvidia, O2, OnePlus, Oppo, Orange, Oscal, Oukitel, Palm, Panasonic, Pantech, Parla, Philips, Plum, Posh, Prestigio, QMobile, Qtek, Razer, Realme, RugOne, Sagem, Samsung, Sendo, Sewon, Sharp, Siemens, Sonim, Sony, Sony Ericsson, Spice, T-Mobile, TCL, Tecno, Tel.Me., Telit, Thuraya, Toshiba, Ulefone, Umidigi, Unnecto, Vertu, verykool, vivo, VK Mobile, Vodafone, Wiko, WND, XCute, Xiaomi, XOLO, Yezz, Yota, YU, ZTE Available options:
Available, Coming soon, Discontinued, Rumored Available options:
GSM 850, GSM 900, GSM 1800, GSM 1900 Available options:
HSPA 850, HSPA 900, HSPA 1700, HSPA 1900, HSPA 2100 Available options:
any, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 66, 71 Available options:
any, 1, 2, 3, 5, 7, 8, 12, 14, 18, 20, 25, 28, 29, 30, 34, 38, 39, 40, 41, 48, 50, 51, 65, 66, 70, 71, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 89, 90, 91, 92, 93, 94, 95, 257, 258, 260, 261 Available options:
Mini-SIM (regular size), Micro-SIM, Nano-SIM Available options:
Bar, Flip up, Flip down, Slide, Swivel, Watch, Other, Foldable Available options:
IP5x, IP6x, IPx5, IPx6, IPx7, IPx8, IPx9, MIL-STD-810D, MIL-STD-810F, MIL-STD-810G, MIL-STD-810H Available options:
Plastic, Aluminum, Glass, Ceramic Available options:
Plastic, Aluminum, Stainless steel, Ceramic, Titanium Available options:
Snapdragon 8 Elite Gen 5, Snapdragon 8 Gen 5, Snapdragon 8 Elite, Snapdragon 8 Gen 3, Snapdragon 8s Gen 4, Snapdragon 8s Gen 3, Snapdragon 8 Gen 2, Snapdragon 8+ Gen 1, Snapdragon 8 Gen 1, Snapdragon 7 Gen 4, Snapdragon 7+ Gen 3, Snapdragon 7 Gen 3, Snapdragon 7s Gen 4, Snapdragon 7s Gen 3, Snapdragon 7s Gen 2, Snapdragon 7+ Gen 2, Snapdragon 7 Gen 1, Snapdragon 6 Gen 4, Snapdragon 6 Gen 3, Snapdragon 6s Gen 4, Snapdragon 6s Gen 3, Snapdragon 6 Gen 1, Snapdragon 4 Gen 5, Snapdragon 4 Gen 4, Snapdragon 4 Gen 2, Snapdragon 4s Gen 2, Snapdragon 4 Gen 1, Snapdragon 888+, Snapdragon 888, Snapdragon 870, Snapdragon 865+, Snapdragon 865, Snapdragon 860, Snapdragon 855+, Snapdragon 855, Snapdragon 845, Snapdragon 835, Snapdragon 821, Snapdragon 820, Snapdragon 782, Snapdragon 780, Snapdragon 778G, Snapdragon 768, Snapdragon 765G, Snapdragon 750, Snapdragon 732, Snapdragon 730G, Snapdragon 730, Snapdragon 720, Snapdragon 712, Snapdragon 710, Snapdragon 695, Snapdragon 690, Snapdragon 685, Snapdragon 680, Snapdragon 675, Snapdragon 670, Snapdragon 665, Snapdragon 662, Snapdragon 660, Snapdragon 652, Snapdragon 650, Snapdragon 636, Snapdragon 632, Snapdragon 630, Snapdragon 625, Snapdragon 480, Snapdragon 460, Snapdragon 450, Snapdragon 439, Snapdragon 435, Snapdragon 430, Snapdragon 429, Snapdragon 425, Snapdragon 215, Exynos 2600, Exynos 2500, Exynos 2400, Exynos 2400e, Exynos 2200, Exynos 2100, Exynos 1680, Exynos 1580, Exynos 1480, Exynos 1380, Exynos 1280, Exynos 1080, Exynos 990, Exynos 980, Exynos 880, Exynos 850, Exynos 9825, Exynos 9820, Exynos 9810, Exynos 9611, Exynos 9610, Exynos 8895, Exynos 8890, Exynos 7904, Exynos 7884, Exynos 7870, Exynos 7580, Exynos 7420, Dimensity 9500, Dimensity 9500s, Dimensity 9400+, Dimensity 9400, Dimensity 9400e, Dimensity 9300+, Dimensity 9300, Dimensity 9200, Dimensity 9000, Dimensity 8500, Dimensity 8450, Dimensity 8400, Dimensity 8350, Dimensity 8300, Dimensity 8250, Dimensity 8200, Dimensity 8100, Dimensity 8050, Dimensity 8020, Dimensity 8000, Dimensity 7400X, Dimensity 7400, Dimensity 7360, Dimensity 7300X, Dimensity 7300, Dimensity 7200, Dimensity 7100, Dimensity 7050, Dimensity 7030, Dimensity 7020, Dimensity 6400, Dimensity 6300, Dimensity 6100, Dimensity 6080, Dimensity 6020, Dimensity 1300, Dimensity 1200, Dimensity 1100, Dimensity 1080, Dimensity 1000, Dimensity 920, Dimensity 900, Dimensity 820, Dimensity 810, Dimensity 800, Dimensity 720, Dimensity 700, Helio G200, Helio G100, Helio G99, Helio G96, Helio G95, Helio G91, Helio G90T, Helio G88, Helio G85, Helio G81 Ultra, Helio G80, Helio G70, Helio G35, Helio P90, Helio P70, Helio P65, Helio P60, Helio P35, Helio P25, Helio P23, Helio P22, Helio P20, Helio P10, Helio A22, Helio X25, Helio X20, Helio X10, Kirin 9030 Pro, Kirin 9020, Kirin T92A, Kirin 9010, Kirin 9000S, Kirin 9000e, Kirin 9000, Kirin 990, Kirin 985, Kirin 980, Kirin 970, Kirin 960, Kirin 810, Kirin 820 5G, Kirin 710A, Kirin 710, Kirin 659 Available options:
One, Two, Three, Four or more Available options:
LED, Dual-LED, Xenon Available options:
Yes (any type), Front-mounted, Rear-mounted, Side-mounted, Top-mounted, Under display Available options:
Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax), Wi-Fi 7 (802.11be) Available options:
Any Bluetooth, Bluetooth 4.0, Bluetooth 4.1, Bluetooth 4.2, Bluetooth 5.0, Bluetooth 5.1, Bluetooth 5.2, Bluetooth 5.3, Bluetooth 5.4, Bluetooth 6.0 Available options:
With QWERTY, Without QWERTY Available options:
Feature phones, Android, iOS, KaiOS, Windows Phone, Symbian, RIM, Bada, Firefox Available options:
Yes (any type), Yes (dedicated), No Available options:
IPS, Any OLED, LTPO OLED Available options:
No, Yes, Punch hole Available options:
Any USB-C, USB-C 3.0 and higher Required range:
1994 <= x <= 2100Required range:
1994 <= x <= 2100Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 1Required range:
x >= 1Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Available options:
Popularity, Price, Weight, Camera resolution, Battery capacity