Reputation:
I am getting WooCommerce Product details using REST API. Here is the url I am using,
https://squatwolf.com/wc-api/v3?id&name&permalink&short_description&price&sale_price
It is not showing me the right products. What could be wrong with my request?
Upvotes: 0
Views: 811
Reputation: 111
Maybe because you've not called the right end point. Try
https://squatwolf.com/wc-api/v3/products?id&name&permalink&short_description&price&sale_price
Upvotes: 1