nanoreview.net APInanoreview.net ↗
Access NanoReview rankings, specs, benchmarks, and side-by-side comparisons for CPUs, GPUs, SoCs, phones, and laptops via a structured JSON API.
curl -X GET 'https://api.parse.bot/scraper/11ed09e4-0f24-4739-bd4b-d940671739f3/search_tech?type=cpu&limit=5&query=Apple+M4' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for tech products (CPU, GPU, SoC, Phone, Laptop) by name. Returns a list of matching products with their slugs and labels.
| Param | Type | Description |
|---|---|---|
| type | string | Product category. Accepted values: cpu, gpu, soc, phone, laptop. |
| limit | integer | Maximum number of results to return. |
| queryrequired | string | Search keyword (e.g. 'Apple M4', 'NVIDIA RTX 4090'). |
{
"type": "object",
"fields": {
"data": "array of product objects, each with id, slug, label, name, and content_type"
},
"sample": {
"data": [
{
"id": 3947,
"name": "Apple M4 Max (14-Core)",
"slug": "apple-m4-max-14-core",
"label": "Apple M4 Max (14-Core)",
"content_type": "cpu"
}
],
"status": "success"
}
}About the nanoreview.net API
The NanoReview API exposes 6 endpoints covering tech product search, ranked listings, full specifications, benchmark data, and head-to-head comparisons across CPUs, GPUs, SoCs, phones, and laptops. The get_details endpoint alone returns specs, NanoReview scores, benchmark sections, and user-submitted results for any product identified by its slug. Slug discovery flows naturally from search_tech, making it straightforward to pipeline queries into detailed lookups or comparisons.
Search and Discovery
The search_tech endpoint accepts a query string plus an optional type filter (cpu, gpu, soc, phone, or laptop) and an optional limit. It returns an array of matching products, each carrying an id, slug, label, name, and content_type. The slug field is the key identifier used by every other endpoint, so search is the natural entry point for any pipeline.
Rankings and Comparisons
get_ranking returns paginated ranked lists for categories including cpu-desktop, cpu-laptop, gpu-desktop, gpu-laptop, soc, phone-antutu, and laptop. Results include rating scores, performance figures, core counts, TDP, and benchmark columns. An optional vendor parameter filters by manufacturer name (e.g. Apple, Intel, Qualcomm) as a case-insensitive substring match. compare_tech accepts two slugs and returns property-by-property comparison tables organized by section — General, CPU, iGPU, Memory Support, and others — with val1 and val2 for each property. Note that not all product pairs have comparison data; missing pairs return an input_not_found error. get_popular_comparisons lists trending comparison pairs for a given category, each with display text and both slugs pre-populated.
Specs and Benchmarks
get_details fetches the full data record for a single product by slug. The response includes a specs object with named fields such as Vendor, Released, Total Cores, and TDP; a scores object with NanoReview aggregate scoring; a benchmarks object keyed by benchmark section name; and a user_benchmarks array where each entry carries a Date, Benchmark name, Result value, and a details_url. For cases where a fuller user benchmark history is needed, get_user_benchmarks_list accepts a slug and returns the complete submission list with a total count and per-entry fields that vary by benchmark type, including Singlescore, Multiscore, User, and Laptop fields where applicable.
- Build a CPU comparison tool that pulls ranked desktop processors via
get_rankingfiltered by vendor and displays side-by-side specs fromcompare_tech. - Aggregate NanoReview benchmark scores for a hardware buying guide by looping
get_detailsover a list of slugs discovered throughsearch_tech. - Track user-submitted benchmark distributions for a specific GPU or SoC using
get_user_benchmarks_listto surface real-world performance variance. - Populate a phone spec database with structured fields like TDP, release date, and SoC by querying
get_detailsfor each device slug. - Surface trending head-to-head comparisons on a tech news site by consuming
get_popular_comparisonsfor thelaptoporphonecategory. - Filter the
socranking by vendorQualcommorAppleto compare mobile chipset performance tiers within a single category view. - Power a hardware recommendation engine that scores laptops against user criteria using per-product spec and rating data from
get_details.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does NanoReview have an official developer API?+
What does `get_ranking` return and how can I filter it?+
get_ranking returns an array of ranked products under the items field, each with columns for rating, performance score, core count, TDP, and relevant benchmark scores. The category parameter selects the list — options are cpu-desktop, cpu-laptop, gpu-desktop, gpu-laptop, soc, phone-antutu, and laptop. The optional vendor parameter performs a case-insensitive substring match against the manufacturer name, so passing AMD returns only AMD entries from that ranked list.Are price or availability data included in product details?+
What happens when a product pair isn't available in `compare_tech`?+
compare_tech returns an input_not_found error rather than partial data. Use get_popular_comparisons to discover slug pairs that are confirmed to have comparison data, or use get_details on each slug individually to build your own side-by-side view.Does the API cover historical benchmark trends over time for a product?+
get_user_benchmarks_list returns all user-submitted results for a product including submission dates, but the API does not expose time-series aggregations or historical trend summaries. You can fork this API on Parse and revise it to aggregate the dated entries into a trend view.