This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. Ninox – Integration for WooCommerce

Ninox – Integration for WooCommerce

Adds a powerful REST API endpoint to retrieve WooCommerce products with complete variation and attribute information in a single API call.

10+ active installsFree on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping Ninox – Integration for WooCommerce running.

WordPress compatibility
Tested to 6.7.5 — 3 branches behind 7.0
A branch or two behind — normal for a plugin between releases.
Last updated
18 days ago
At least 6.0 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.
Requires PHP
7.2
Your host must be running at least this version.
Requires WordPress
6.4
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

10+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how Ninox – Integration for WooCommerce is looked after — not on how many stores run it.

Mixed signals
Not enough public feedback to put a confident number on this one. Little public feedback — score rests mostly on release activity. What we can see is below.

Maintenance
35 / 35
Updated 16 days ago.
WordPress compatibility
7 / 20
3 WP branches behind.
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
Not enough data
No ratings yet.
Listing transparency
6 / 10
Provides: description, homepage
2 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-02 from the WordPress.org plugin registry.
Ratings

No one has rated this plugin on WordPress.org yet. That is a statement about the ratings page, not about the plugin — plenty of well-kept plugins never collect them.

Ninox – Integration for WooCommerce adds a new REST API endpoint to WooCommerce that returns all products with their complete variation data in a single, optimized request.

This plugin is designed for developers, theme creators, and anyone building custom interfaces or integrations with WooCommerce who needs comprehensive product data including variations.

Key Features

  • Comprehensive Data Access: Get complete product details and all variations in a single API call
  • Performance Optimized: Batch processing and efficient queries to handle large product catalogs
  • Secure Authentication: Supports WooCommerce API key authentication and proper permission validation
  • Well-documented API: Clear documentation with example requests and responses
  • Cache Support: Intelligent caching to improve response times and reduce server load

Use Cases

  • Building custom front-end interfaces for WooCommerce stores
  • Developing mobile applications that need to display product data
  • Creating external integrations with other systems
  • Developing custom reporting tools
  • Any application that needs detailed product variation data

Technical Details

The plugin adds the following endpoint:

/wp-json/wc/v3/products-with-variations

This endpoint handles all the complex database queries needed to retrieve products with their attributes and variations in an efficient way, reducing the number of API calls your application needs to make.

API Documentation

The plugin adds the following endpoint:

Endpoint: /wp-json/wc/v3/products-with-variations
Method: GET
Required Permissions: manage_woocommerce capability or valid API key

Parameters:

Parameter
Type
Description

page
integer
Current page of the collection. Default is 1.

per_page
integer
Maximum number of items to be returned in result set. Default is 10. Max 20.

force_refresh
string
Set to ‘true’ to bypass cache and get fresh data. Optional.

Example Response:

`json

[
{
“id”: 123,
“name”: “Sample Product”,
“description”: “Product description”,
“short_description”: “Short description”,
“image”: “https://example.com/wp-content/uploads/sample-product.jpg”,
“sku”: “SAMPLE-1”,
“price”: “29.99”,
“regular_price”: “39.99”,
“sale_price”: “29.99”,
“stock”: 10,
“stock_status”: “instock”,
“weight”: “”,
“length”: “”,
“width”: “”,
“height”: “”,
“attributes”: [
{
“id”: 1,
“name”: “Size”,
“options”: [“S”, “M”, “L”]
}
],
“variations”: [
{
“id”: 124,
“sku”: “SAMPLE-1-S”,
“price”: “29.99”,
“regular_price”: “29.99”,
“sale_price”: “”,
“stock”: 5,
“stock_status”: “instock”,
“attributes”: [
{
“id”: 1,
“name”: “size”,
“option”: “S”
}
]
}
]
}
]
`

Headers:

When using pagination, the response includes the following headers:

  • X-WP-Total: The total number of products found
  • X-WP-TotalPages: The total number of pages

Status Endpoint

Endpoint: /wp-json/wc/v3/ninox-status
Method: GET
Required Permissions: manage_woocommerce capability or valid API key

Returns the plugin version and general environment data. A 200 response confirms the plugin is installed, active and reachable.

Example response:

`json

{
“plugin”: “ninox-integration-for-woocommerce”,
“plugin_name”: “Ninox – Integration for WooCommerce”,
“plugin_version”: “1.0.6”,
“wc_version”: “9.3.1”,
“wp_version”: “6.7”,
“php_version”: “8.1.0”,
“site_url”: “https://example.com”,
“wc_active”: true
}
`

Privacy Policy

This plugin does not collect, store, or share any user data. It only retrieves product information from your WordPress database through WooCommerce’s API.

No personal information is collected or transmitted to external services. The plugin only accesses the following database information:
– Product details
– Product variations
– Product attributes
– Stock information

All data processing occurs locally within your WordPress installation.

Security

This plugin supports two authentication methods for accessing the REST API endpoint:

  1. WooCommerce API Keys (Basic Authentication)

– Create an API key pair in WooCommerce > Settings > Advanced > REST API
– Use these credentials in the Authorization header as Basic auth
– Format: Authorization: Basic base64(consumer_key:consumer_secret)

  1. WordPress User Authentication

– Users must have ‘manage_woocommerce’ capability
– Supports standard WordPress authentication methods including:
* Session-based authentication
* Cookie-based authentication
* WordPress nonces

All credentials and API keys are stored securely in the WordPress database using WordPress core security standards. No credentials are stored in plain text, and all database queries are properly prepared and sanitized.

Support

If you need help with this plugin, please visit our support forum at:
https://ninoxnet.com/contacto/

For custom development or integration assistance, please contact us at:
info@ninoxnet.com

What permissions do I need to use this plugin?

To access the API endpoint, you need to have administrator permissions or a valid WooCommerce API key with proper credentials.

How can I get the authentication credentials?

You can create API keys from the WooCommerce admin panel:
1. Go to WooCommerce > Settings > Advanced > REST API
2. Click “Add key”
3. Set the appropriate permissions (read access is required)
4. Generate the key

How should I format the authentication in my requests?

The plugin accepts basic authentication in the format:
Authorization: Basic base64(consumer_key:consumer_secret)

Is this plugin compatible with WooCommerce blocks?

Yes, this plugin is fully compatible with WooCommerce blocks and other WooCommerce extensions as it only adds a new API endpoint and doesn’t modify any existing WooCommerce functionality.

Will this plugin slow down my site?

No. The plugin only adds a REST API endpoint that is called when specifically requested. It uses efficient database queries and includes caching to maintain good performance even with large product catalogs.

How can I customize the response format?

Currently, the plugin provides a standardized response format. If you need custom fields or a different structure, you can use WordPress filters to modify the output or contact us for custom development.

Does this plugin work with multilingual sites?

Yes, the plugin will return data in the language configured in your WordPress installation.

Does this plugin work with custom product attributes?

Yes, the plugin supports both global and product-specific custom attributes.

Categories
Invoicing & accountingCatalogue & variations
Plugin details
Version1.0.6
Last updated2026-07-17 2:41pm GMT
Added2025-04-07
Requires WordPress6.4
Tested up to6.7.5
Requires PHP7.2

Tags on WordPress.org
ERP
ninoxnet
products
saas
variants
Alternatives
Other plugins in the same categories.
PDF Invoices & Packing Slips for WooCommerce
300K+ installs
5.0(1,859)
WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels
50K+ installs
4.9(284)
Fattura24
500+ installs
4.9(96)
WebPlanex: GST Invoice India
400+ installs
5.0(34)
Printus – Automatic Cloud Printing for WooCommerce
800+ installs
5.0(26)
Print Invoice & Delivery Notes for WooCommerce
30K+ installs
4.4(137)
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy