Naar de inhoud
GET /v1/product

One product in full by Newegg item number

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/newegg-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}