Aller au contenu
GET /v1/search

Search Newegg products by keyword

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/newegg-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/newegg-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/newegg-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/newegg-api/v1/search");
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/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "page": 1,
        "count": 24,
        "query": "laptop",
        "source": "Newegg",
        "products": [
            {
                "url": "https://www.newegg.com/p/1TS-000E-1DK92",
                "item": "1TS-000E-1DK92",
                "brand": "Lenovo",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/A8X5S2511110Z4BPK2A.jpg",
                "model": "82XM00LMUS",
                "price": 599.99,
                "title": "Lenovo - IdeaPad Slim 3 15.6\" Full HD Touchscreen Laptop - AMD Ryzen 7 5825U - 16GB Memory - 512GB SSD - Arctic Grey",
                "rating": null,
                "seller": "Newegg",
                "reviews": null,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIAGHSGUG6199",
                "item": "9SIAGHSGUG6199",
                "brand": "HP",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/AGHSS2201130B8VQNF6.jpg",
                "model": "15-dw3033dx, 512",
                "price": 321,
                "title": "HP 15.6\" FHD Laptop, Intel Core i3-1115G4 processor - 8GB Memory - 512GB SSD - Natural Silver",
                "rating": null,
                "seller": "SeekNFind",
                "reviews": null,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIBPMFKT05418",
                "item": "9SIBPMFKT05418",
                "brand": "HP",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/BPMFS2602140441SL3F.jpg",
                "model": "HC640012021326SUB",
                "price": 1159,
                "title": "HP 17.3\" IPS LED Full HD Business Laptop Intel core i7-1355U Intel Irix Xe Graphics 64GB DDR4 RAM 1TB SSD HDMI 1.4 USB-C Wi-Fi 6 Webcam Stereo Speaker Copilot AI Long Battery Windows 11 Pro Silver",
                "rating": null,
                "seller": "Happy Bear",
                "reviews": null,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/34-840-673",
                "item": "34-840-673",
                "brand": "Lenovo",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/34-840-673-19.jpg",
                "model": "83LY000LUS",
                "price": 1249.99,
                "title": "Lenovo Legion 5i - 15.1\" GeForce RTX 5060 Laptop GPU - Intel Core i7-14700HX - 16GB Memory - 512GB SSD - 165Hz OLED Display - Windows 11 Home Gaming Laptop (83LY000LUS)",
                "rating": 4.5,
                "seller": "Newegg",
                "reviews": 0,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/34-156-876",
    
…