Μετάβαση στο περιεχόμενο
GET /v1/category

Browse a Newegg category by node id

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/newegg-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "page": 1,
        "sort": "price_asc",
        "count": 24,
        "source": "Newegg",
        "category": "100007709",
        "products": [
            {
                "url": "https://www.newegg.com/p/9SIACTNJ9A5767",
                "item": "9SIACTNJ9A5767",
                "brand": "NVIDIA",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/ACTN_1_202001061603280805.jpg",
                "model": "660499-003",
                "price": 19.54,
                "title": "Nvidia Geforce GT 520M 1GB Module PCI-E Laptop Graphic Card 660499-003 US Laptop Video Cards",
                "rating": null,
                "seller": "Ascendtech",
                "reviews": null,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIADFRJBB4765",
                "item": "9SIADFRJBB4765",
                "brand": "AMD",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/ACTN_1_20190808451394825.jpg",
                "model": "716521-001",
                "price": 22.99,
                "title": "716521-001 717219-001 AMD ATI Radeon HD8490 1GB DDR3 DVI Displayport Video Card PCI-EXPRESS Video Cards",
                "rating": 5,
                "seller": "Computer Headquarters",
                "reviews": 0,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIA4A0K9D5922",
                "item": "9SIA4A0K9D5922",
                "brand": "Sapphire Tech",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/B7VES2202210PPL7L97.jpg",
                "model": "17817",
                "price": 28.14,
                "title": "For Dell Radeon B403 Video Graphic Card PCI-E 2x Display Port 102-B40319 0C120D",
                "rating": null,
                "seller": "Cloud Computing LLC",
                "reviews": null,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIACA5KR92568",
                "item": "9SIACA5KR92568",
                "brand": "AMD",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll1280/AA4T_131181856784702792Jm7Gtxi9ai.jpg",
                "model": "HD 7570",
                "price": 29.99,
                "title": "AMD Radeon HD 7570 1GB GDDR5 PCIe x16 DVI , DisplayPort Video Card",
                "rating": 5,
                "seller": "Stock4Less",
                "reviews": 0,
                "in_stock": true,
                "original_price": null
            },
            {
                "url": "https://www.newegg.com/p/9SIA4A0KK93850",
                "item": "9SIA4A0KK93850",
                "brand": "NVIDIA",
                "image": "https://c1.neweggimages.com/ProductImageCompressAll
…