Easy APIs Simplify Api Integration

Beschrijving

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

Installatie

  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.

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Easy APIs Simplify Api Integration” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Easy APIs Simplify Api Integration” naar jouw taal.

Interesse in de ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.0

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