Shopping · head-to-head
Best Buy vs Mercadolibre
Best Buy's public REST API exposes product, store, category, and recommendation data behind a free API key registered through its developer portal. Responses can be returned as either JSON or XML for most endpoints, though the newer Recommendations endpoints are JSON-only. Live probing shows the gateway actively validates keys server-side but returns no CORS headers, so it is built for server-side integration rather than direct browser calls.
Mercado Libre exposes a large REST surface across its Latin American marketplace sites, covering listings, orders, ads, and shipping. Public reference data like site categories is reachable without a token, but anything scoped to a seller account requires an OAuth2 access token obtained via an authorization-code or client-credentials grant. The API itself carries no direct usage fee — Mercado Libre monetizes through marketplace and payment commissions instead.
| Best Buy | Mercadolibre | |
|---|---|---|
| Authentication | API Key | OAuth |
| Pricing | free | free |
| Formats | JSON, XML | JSON |
| CORS | no | yes |
| HTTPS | Yes | Yes |
Mercadolibre supports CORS, while Best Buy doesn't — pick Mercadolibre for direct browser calls.