Shopping · head-to-head
Mercadolibre vs WooCommerce
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.
WooCommerce's REST API isn't a centrally hosted service — every self-hosted WooCommerce store exposes its own instance, authenticated by a consumer key/secret pair sent as HTTP Basic Auth credentials over HTTPS, per WooCommerce's own documentation. Because CORS support depends entirely on each merchant's own server configuration rather than the protocol itself, it can't be verified as a single blanket property of "the API." The protocol ships free with the open-source plugin; the only cost is whatever the merchant already pays to host their own store.
| Mercadolibre | WooCommerce | |
|---|---|---|
| Authentication | OAuth | Basic Auth |
| Pricing | free | free |
| Formats | JSON | JSON |
| CORS | yes | unknown |
| HTTPS | Yes | Yes |
Mercadolibre supports CORS, while WooCommerce doesn't — pick Mercadolibre for direct browser calls.