/displayspecifications/models/search
curl --request POST \
--url https://api.anysite.io/api/displayspecifications/models/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 30,
"timeout": 300,
"locale": "en",
"period": "all",
"panel": "any",
"backlight": "any",
"hdr": "any",
"size_inches_min": 49,
"size_inches_max": 49,
"refresh_hz_min": 575,
"refresh_hz_max": 575,
"curved": false,
"vesa_mount": false,
"adaptive_sync": false,
"amd_freesync": false,
"nvidia_gsync": false,
"flicker_free": false,
"low_blue_light": false,
"removable_stand": false,
"height_adjustable": false,
"pivot_adjustable": false,
"swivel_adjustable": false,
"tilt_adjustable": false,
"earc": false,
"allm": false,
"vrr": false,
"hfr": false
}
'import requests
url = "https://api.anysite.io/api/displayspecifications/models/search"
payload = {
"count": 30,
"timeout": 300,
"locale": "en",
"period": "all",
"panel": "any",
"backlight": "any",
"hdr": "any",
"size_inches_min": 49,
"size_inches_max": 49,
"refresh_hz_min": 575,
"refresh_hz_max": 575,
"curved": False,
"vesa_mount": False,
"adaptive_sync": False,
"amd_freesync": False,
"nvidia_gsync": False,
"flicker_free": False,
"low_blue_light": False,
"removable_stand": False,
"height_adjustable": False,
"pivot_adjustable": False,
"swivel_adjustable": False,
"tilt_adjustable": False,
"earc": False,
"allm": False,
"vrr": False,
"hfr": False
}
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: 30,
timeout: 300,
locale: 'en',
period: 'all',
panel: 'any',
backlight: 'any',
hdr: 'any',
size_inches_min: 49,
size_inches_max: 49,
refresh_hz_min: 575,
refresh_hz_max: 575,
curved: false,
vesa_mount: false,
adaptive_sync: false,
amd_freesync: false,
nvidia_gsync: false,
flicker_free: false,
low_blue_light: false,
removable_stand: false,
height_adjustable: false,
pivot_adjustable: false,
swivel_adjustable: false,
tilt_adjustable: false,
earc: false,
allm: false,
vrr: false,
hfr: false
})
};
fetch('https://api.anysite.io/api/displayspecifications/models/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/displayspecifications/models/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' => 30,
'timeout' => 300,
'locale' => 'en',
'period' => 'all',
'panel' => 'any',
'backlight' => 'any',
'hdr' => 'any',
'size_inches_min' => 49,
'size_inches_max' => 49,
'refresh_hz_min' => 575,
'refresh_hz_max' => 575,
'curved' => false,
'vesa_mount' => false,
'adaptive_sync' => false,
'amd_freesync' => false,
'nvidia_gsync' => false,
'flicker_free' => false,
'low_blue_light' => false,
'removable_stand' => false,
'height_adjustable' => false,
'pivot_adjustable' => false,
'swivel_adjustable' => false,
'tilt_adjustable' => false,
'earc' => false,
'allm' => false,
'vrr' => false,
'hfr' => false
]),
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/displayspecifications/models/search"
payload := strings.NewReader("{\n \"count\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\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/displayspecifications/models/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/displayspecifications/models/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\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"@type": "DisplayspecificationsModelCard",
"size_inches": 123,
"image": "<string>",
"summary": "<string>",
"summary_fields": {}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/displayspecifications
/displayspecifications/models/search
Search the DisplaySpecifications catalogue with the site’s own Display Finder filters: monitors or TVs, announcement period, panel and backlight technology, HDR support, native resolution, size class and refresh-rate range, broadcast tuner, and the ergonomic and sync features. Returns model cards with the id, page URL, name, screen size, image and the spec summary the source shows on hover.
Price: 5 credits
POST
/
api
/
displayspecifications
/
models
/
search
/displayspecifications/models/search
curl --request POST \
--url https://api.anysite.io/api/displayspecifications/models/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 30,
"timeout": 300,
"locale": "en",
"period": "all",
"panel": "any",
"backlight": "any",
"hdr": "any",
"size_inches_min": 49,
"size_inches_max": 49,
"refresh_hz_min": 575,
"refresh_hz_max": 575,
"curved": false,
"vesa_mount": false,
"adaptive_sync": false,
"amd_freesync": false,
"nvidia_gsync": false,
"flicker_free": false,
"low_blue_light": false,
"removable_stand": false,
"height_adjustable": false,
"pivot_adjustable": false,
"swivel_adjustable": false,
"tilt_adjustable": false,
"earc": false,
"allm": false,
"vrr": false,
"hfr": false
}
'import requests
url = "https://api.anysite.io/api/displayspecifications/models/search"
payload = {
"count": 30,
"timeout": 300,
"locale": "en",
"period": "all",
"panel": "any",
"backlight": "any",
"hdr": "any",
"size_inches_min": 49,
"size_inches_max": 49,
"refresh_hz_min": 575,
"refresh_hz_max": 575,
"curved": False,
"vesa_mount": False,
"adaptive_sync": False,
"amd_freesync": False,
"nvidia_gsync": False,
"flicker_free": False,
"low_blue_light": False,
"removable_stand": False,
"height_adjustable": False,
"pivot_adjustable": False,
"swivel_adjustable": False,
"tilt_adjustable": False,
"earc": False,
"allm": False,
"vrr": False,
"hfr": False
}
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: 30,
timeout: 300,
locale: 'en',
period: 'all',
panel: 'any',
backlight: 'any',
hdr: 'any',
size_inches_min: 49,
size_inches_max: 49,
refresh_hz_min: 575,
refresh_hz_max: 575,
curved: false,
vesa_mount: false,
adaptive_sync: false,
amd_freesync: false,
nvidia_gsync: false,
flicker_free: false,
low_blue_light: false,
removable_stand: false,
height_adjustable: false,
pivot_adjustable: false,
swivel_adjustable: false,
tilt_adjustable: false,
earc: false,
allm: false,
vrr: false,
hfr: false
})
};
fetch('https://api.anysite.io/api/displayspecifications/models/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/displayspecifications/models/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' => 30,
'timeout' => 300,
'locale' => 'en',
'period' => 'all',
'panel' => 'any',
'backlight' => 'any',
'hdr' => 'any',
'size_inches_min' => 49,
'size_inches_max' => 49,
'refresh_hz_min' => 575,
'refresh_hz_max' => 575,
'curved' => false,
'vesa_mount' => false,
'adaptive_sync' => false,
'amd_freesync' => false,
'nvidia_gsync' => false,
'flicker_free' => false,
'low_blue_light' => false,
'removable_stand' => false,
'height_adjustable' => false,
'pivot_adjustable' => false,
'swivel_adjustable' => false,
'tilt_adjustable' => false,
'earc' => false,
'allm' => false,
'vrr' => false,
'hfr' => false
]),
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/displayspecifications/models/search"
payload := strings.NewReader("{\n \"count\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\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/displayspecifications/models/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/displayspecifications/models/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\": 30,\n \"timeout\": 300,\n \"locale\": \"en\",\n \"period\": \"all\",\n \"panel\": \"any\",\n \"backlight\": \"any\",\n \"hdr\": \"any\",\n \"size_inches_min\": 49,\n \"size_inches_max\": 49,\n \"refresh_hz_min\": 575,\n \"refresh_hz_max\": 575,\n \"curved\": false,\n \"vesa_mount\": false,\n \"adaptive_sync\": false,\n \"amd_freesync\": false,\n \"nvidia_gsync\": false,\n \"flicker_free\": false,\n \"low_blue_light\": false,\n \"removable_stand\": false,\n \"height_adjustable\": false,\n \"pivot_adjustable\": false,\n \"swivel_adjustable\": false,\n \"tilt_adjustable\": false,\n \"earc\": false,\n \"allm\": false,\n \"vrr\": false,\n \"hfr\": false\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"@type": "DisplayspecificationsModelCard",
"size_inches": 123,
"image": "<string>",
"summary": "<string>",
"summary_fields": {}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required range:
1 <= x <= 60Available options:
monitor, tv Required range:
20 <= x <= 1500Available options:
en, de, es, fr, ru, bg Available options:
all, 2026, 2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, past_6_months, past_12_months Available options:
any, TN, IPS, VA, OLED Available options:
any, CCFL, W-LED, GB-r LED, Edge LED, Direct LED, Direct LED (FALD), Mini LED Available options:
any, HDR, HDR10, HDR10+, VESA DisplayHDR 400, VESA DisplayHDR 600, VESA DisplayHDR 1000, VESA DisplayHDR 1400, Dolby Vision Available options:
1280x720, 1280x1024, 1366x720, 1366x766, 1366x768, 1440x900, 1600x900, 1600x1200, 1680x1050, 1920x108, 1920x1080, 1920x1200, 2560x1440, 2560x1080, 2560x1600, 5120x1440, 3440x1440, 3840x1080, 3840x1200, 3840x1600, 3840x2160, 3840x2560, 4096x2160, 4096x2304, 5120x2160, 5120x2880, 6016x3384, 6144x2560, 6144x3456, 7680x2160, 7680x4320 Required range:
10 <= x <= 89Required range:
10 <= x <= 89Required range:
50 <= x <= 1100Required range:
50 <= x <= 1100Available options:
dvbt, atsc