Easy APIs Simplify Api Integration
Easily expose WordPress and WooCommerce data through custom REST APIs. Fetch posts, users, products, and more with pagination and filters.
Plugin info
Maintenance & Compatibility
Maintenance score
Stale • Last updated 300 days ago
Is Easy APIs Simplify Api Integration abandoned?
Likely maintained (last update 300 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Easy APIs – Simplify API Integration is a lightweight plugin to quickly enable REST API endpoints for common WordPress data. No complex setups – just plug and go.
Currently supported API endpoints:
WordPress Core APIs:
– /wp-json/easy-apis/v1/posts
– /wp-json/easy-apis/v1/custom-posts
– /wp-json/easy-apis/v1/users
WooCommerce APIs:
– /wp-json/easy-apis/v1/products
Each API supports:
– Pagination via per_page and page parameters
– JSON response structure
– Full post/product/user data exposure
Perfect for headless WordPress, mobile apps, or connecting to third-party platforms.
API Documentation
Get All Products (WooCommerce)
Endpoint: /wp-json/easy-apis/v1/products
Method: GET
Parameters:
– per_page: Number of products per page (default: 10)
– page: Page number (default: 1)
Example:
/wp-json/easy-apis/v1/products?per_page=5&page=2
Returns: JSON list of products with full data (title, price, SKU, categories, images, attributes, etc.)
A brief Markdown Example
Some features:
1. Simple setup, no config needed
2. Clean, RESTful endpoints
3. Built-in WooCommerce support
Installation
- Upload the
easy-apis-simplify-api-integrationfolder to the/wp-content/plugins/directory. - Activate the plugin through the ‘Plugins’ menu in WordPress.
- Start using the endpoints like:
your-site.com/wp-json/easy-apis/v1/products
Frequently Asked Questions
Nope! Just activate and start calling the APIs.
Yes. Use the /custom-posts endpoint and pass the type query param (e.g. type=books).
All endpoints are public by default. Add your own auth logic if needed.
Review feed
Screenshots
Changelog
1.0
- Initial release
- WooCommerce product API endpoint added
- Basic pagination support for all endpoints