by Syed Gohar Ali on WordPress.org
Provides REST API endpoints for WooCommerce orders, blog posts, and pages, plus a setup wizard for API user/app password. Easily integrate your WooCom …

Setup wizard and API credentials display in the admin area.
Provides REST API endpoints for WooCommerce orders, blog posts, and pages, plus a setup wizard for API user/app password. Easily integrate your WooCommerce store and WordPress content with external systems using secure, app-password-protected API endpoints.
GET /wp-json/get-api-manager/v1/orders?limit=25&order=DESC — List latest ordersGET /wp-json/get-api-manager/v1/orders/{id} — Get a single order by IDGET /wp-json/get-api-manager/v1/orders?status=completed — List completed ordersGET /wp-json/get-api-manager/v1/orders?status=processing — List processing ordersGET /wp-json/get-api-manager/v1/orders?date=YYYY-MM-DD — List orders created on a specific dateGET /wp-json/get-api-manager/v1/orders?order_by=date — List orders sorted by dateGET /wp-json/get-api-manager/v1/posts?limit=10&order=DESC — List latest blog postsGET /wp-json/get-api-manager/v1/pages?limit=5&order=ASC — List published pagesAll endpoints require Basic Authentication using the generated API user and app password. Use the credentials from the plugin settings page.
“`
curl -u “api_username:app_password” “https://your-site.com/wp-json/get-api-manager/v1/orders?limit=10”
`