/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}