Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/newegg-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/newegg-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/newegg-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/newegg-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/newegg-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "search takes q (a keyword like laptop, rtx 4070, ssd), optional page and limit (1-96). Prices are USD and live; ratings/reviews are Newegg's. Results are not cached.",
        "sample": {
            "price": 599.99,
            "title": "Lenovo - IdeaPad Slim 3 15.6\" Full HD Touchscreen Laptop - AMD Ryzen 7 5825U - 16GB Memory - 512GB SSD - Arctic Grey"
        },
        "source": "Newegg public search (newegg.com/p/pl, live)",
        "service": "newegg-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Search Newegg products by keyword (q=laptop, page, limit)."
        },
        "description": "Live product search from Newegg.com, the major electronics & tech retailer, keyless via proxy. For any keyword: the product listings with title, brand, model, current price, original price, image, rating, review count, in-stock status, seller and the Newegg product URL. Data is read from the page's embedded catalogue JSON, not fragile HTML scraping. The electronics-product-search/price layer for shopping, comparison and deal apps. Distinct from price-comparison aggregators — Newegg's own catalogue and live prices.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T22:56:01.047Z",
        "request_id": "b5e36148-da46-4b8a-91c6-e4495c71c87e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}