Easy APIs Simplify Api Integration

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

  1. Upload the easy-apis-simplify-api-integration folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Start using the endpoints like: your-site.com/wp-json/easy-apis/v1/products

FAQ

Do I need to configure anything?

Nope! Just activate and start calling the APIs.

Does this plugin support custom post types?

Yes. Use the /custom-posts endpoint and pass the type query param (e.g. type=books).

Is authentication required?

All endpoints are public by default. Add your own auth logic if needed.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Easy APIs Simplify Api Integration” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

1.0

  • Initial release
  • WooCommerce product API endpoint added
  • Basic pagination support for all endpoints