/v1/product
One product in full by Newegg item number
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/newegg-api/v1/product" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/newegg-api/v1/product", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/newegg-api/v1/product");
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/product",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"sku": "N82E16820156412",
"url": "https://www.newegg.com/p/9SIBFJRKFE0326",
"gtin": "649528942081",
"item": "9SIBFJRKFE0326",
"name": "Crucial P310 M.2 2280 1TB PCI-Express 4.0 x4 NVMe 3D NAND Internal Solid State Drive Speed Up to 7100 MBps (SSD) CT1000P310SSD8",
"brand": "Crucial",
"image": "https://c1.neweggimages.com/ProductImage/20-156-411-01.jpg",
"model": "CT1000P310SSD8",
"price": 178.55,
"images": [
"https://c1.neweggimages.com/ProductImage/20-156-411-01.jpg"
],
"rating": 5,
"source": "Newegg",
"reviews": 89,
"currency": "USD",
"in_stock": true,
"condition": "NewCondition",
"description": "Crucial P310 M.2 2280 1TB PCI-Express 4.0 x4 NVMe 3D NAND Internal Solid State Drive Speed Up to 7100 MBps (SSD) CT1000P310SSD8",
"availability": "InStock"
},
"meta": {
"timestamp": "2026-06-14T08:04:42.835Z",
"request_id": "c785f16c-a4c0-4980-8515-466ea2698e23"
},
"status": "ok",
"message": "Product retrieved successfully",
"success": true
}