One product in full by Newegg item number
API · /newegg-api
Newegg API
Live product search from Newegg.com, the major electronics & tech retailer. Search any keyword — laptop, rtx 4070, ssd — and get the product listings with title, brand, model, current price, original price, image, rating, review count, in-stock status, seller and the Newegg product URL. Prices are live USD. Ideal for shopping, price-comparison, deal-tracking and e-commerce dashboards.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 2067 ms
- Server probes · 24h
- Subscribers
- 3,531
- active
- Total calls
- 54
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 500 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 500 calls/month
- 2 req/sec
- Live Newegg product search
- No credit card
Starter
€15.00 /month
- 15,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 15k calls/month
- 6 req/sec
- Full product fields
- Email support
Pro
€59.00 /month
- 75,000 calls / month
- 16 requests / second
- Hard cap (429 above quota, no overage)
- 75k calls/month
- 16 req/sec
- High-volume search
- Priority support
Business
€249.00 /month
- 500,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 500k calls/month
- 40 req/sec
- Commercial use
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Vinted API
Live data from Vinted, Europe's largest second-hand fashion marketplace, with no account and no key. Vinted's public catalogue sits behind an anonymous session; this API bootstraps that session and reads Vinted's own internal JSON, returning clean results. Search the live catalogue by keyword with a price range and sort order (newest, price low-to-high, price high-to-low, relevance) — each listing with its price, brand, size, condition, primary photo, favourite count and seller. List any seller's public listings (their "closet"). And read a seller's public profile — item count, follower and following counts, positive/negative feedback counts and reputation. The resale / second-hand-commerce layer for shopping aggregators, price-comparison, fashion-resale analytics and deal-finding tools. Distinct from new-goods marketplace readers. Live from Vinted; short cache only.
api.oanor.com/vinted-api
Unit Price API
Unit-price and best-value maths as an API — the supermarket "which is cheaper" calculation, computed locally and deterministically and entirely currency-agnostic. The unit endpoint normalises a pack price to a price per standard unit: from a price, a pack size and its unit (and an optional multipack count) it returns the price per kilogram, per 100 g and per pound for weight; per litre, per 100 ml and per fluid ounce for volume; or per item for counted goods — plus the price per pack item for multipacks. The compare endpoint takes several pack options as a simple list (such as "3@500g,5@1kg,4.5@750g"), ranks them cheapest-per-unit first, names the best value and reports the percentage saving versus the most expensive. The convert endpoint turns a unit price given in one basis (for example per pound) into the other bases for its measure. Everything is computed locally and deterministically, so it is instant and private. Options being compared must share a measure (all weight, all volume or all count). Ideal for shopping and grocery apps, price-comparison and deal sites, budgeting tools, and retail and procurement software. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is unit-price comparison; for profit margin and markup use a margin API.
api.oanor.com/unitprice-api
Incoterms API
The ICC Incoterms — the international commercial terms used in every contract of international sale — as an API. For each of the 11 three-letter terms (EXW, FCA, FAS, FOB, CFR, CIF, CPT, CIP, DAP, DPU, DDP): its full name, a plain-language description of what the seller and the buyer are each responsible for, the official Incoterms group (E departure, F main-carriage-unpaid, C main-carriage-paid, D arrival) and the mode of transport it applies to (any mode, or sea and inland waterway only). Look a term up, list the terms in a group, filter by transport mode, or list them all. The reference an e-commerce checkout, ERP, freight-forwarding or trade-finance system needs to interpret a delivery term. Served from memory — always fast.
api.oanor.com/incoterms-api
Dimensional Weight API
Shipping dimensional-weight maths as an API. Carriers bill the greater of a parcel's actual weight and its dimensional (volumetric) weight — the volume divided by a carrier "dim divisor" — so a big, light box can cost far more than the scales suggest. The dimweight endpoint computes the dimensional weight in both pounds and kilograms from the length, width and height (in inches or centimetres) and a dim divisor, which you can give directly or pick by carrier (UPS, FedEx, USPS, DHL, IATA). The billable endpoint takes the actual weight as well and returns the billable weight — the greater of actual and dimensional — telling you which one you will be charged on. The girth endpoint computes the girth (twice the width plus height of the two smaller sides), the length-plus-girth and the longest side, and flags whether the parcel is oversize against length limits (defaulting to typical US ground values). Everything is computed locally and deterministically, so it is instant and private. Ideal for e-commerce checkout and shipping estimators, fulfilment and warehouse tools, freight and logistics software, and packaging optimisation. Pure local computation — no key, no third-party service, instant. Live, nothing stored. Divisors and limits are typical published values — confirm with your carrier and service. 3 endpoints. This is dimensional-weight maths; for live shipping rates use a carrier's own API, and for plain unit conversion use a unit-conversion API.
api.oanor.com/dimweight-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Newegg API?
What's the rate limit for Newegg API?
How much does Newegg API cost?
Can I cancel my subscription anytime?
Is Newegg API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/newegg-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/newegg-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/newegg-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/newegg-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.