Commit 0d73827215 for woocommerce

commit 0d7382721511bd46e7728bbb01ceb586e3fd6c70
Author: Brian Coords <bacoords@gmail.com>
Date:   Mon Jun 30 11:42:37 2025 -0700

    Docs: Add a readme page for the APIs docs section to resolve empty URLs (#59041)

    adds landing page for the apis docs section

diff --git a/docs/apis/README.md b/docs/apis/README.md
new file mode 100644
index 0000000000..eeffda80e9
--- /dev/null
+++ b/docs/apis/README.md
@@ -0,0 +1,56 @@
+---
+post_title: 'Getting Started with WooCommerce APIs'
+sidebar_label: 'Getting started'
+---
+
+# Getting Started with WooCommerce APIs
+
+WooCommerce provides a number of programmatic APIs to interact with WooCommerce store data.
+
+## WC REST API
+
+The WC REST API is a powerful part of WooCommerce which lets you read and write various parts of WooCommerce data such as orders, products, coupons, customers, and shipping zones. It based on the [WordPress REST API](https://developer.wordpress.org/rest-api/).
+
+Explore the [WC REST API](./rest-api/README.md) documentation.
+
+## Store API
+
+The Store API provides public REST API endpoints for the development of customer-facing cart, checkout, and product functionality. In contrast to the WooCommerce REST API, the Store API is unauthenticated and does not provide access to sensitive store data or other customer information.
+
+Explore the [Store API](./store-api/README.md) documentation.
+
+## Other Resources
+
+Beyond the powerful REST APIs, WooCommerce offers a suite of PHP-based APIs designed for developers to deeply integrate and extend the core functionality of their store. These APIs allow for direct interaction with WooCommerce classes, enabling custom behaviors for settings, payment gateways, shipping methods, and more.
+
+### Settings API
+
+The Settings API is used by extensions to display, save, and load settings.
+
+Explore the [Settings API](/docs/extensions/settings-and-config/settings-api) documentation.
+
+### Payment Gateway API
+
+The Payment Gateway API is used by extensions to interact with the payment gateway.
+
+Explore the [Payment Gateway API](/docs/features/payments/payment-gateway-api/) documentation.
+
+### Shipping Method API
+
+The Shipping Method API is used by extensions to extend shipping methods and add their own rates.
+
+Explore the [Shipping Method API](/docs/features/shipping/shipping-method-api/) documentation.
+
+### Payment Token API
+
+The Payment Token API is used for storing and managing payment tokens for gateways.
+
+Explore the [Payment Token API](/docs/features/payments/payment-token-api/) documentation.
+
+### WooCommerce Code Reference
+
+The WooCommerce Code Reference is a comprehensive documentation of the WooCommerce API. It is a great resource for developers to learn about the WooCommerce API and how to use it.
+
+The WooCommerce Code Reference is a comprehensive documentation of the internal WooCommerce Classes, API, and functions. It is a great resource for developers to learn about the WooCommerce functionality and how to extend it.
+
+Explore the [WooCommerce Code Reference](https://developer.wordpress.org/reference/classes/woocommerce/) documentation.
diff --git a/docs/apis/_category_.json b/docs/apis/_category_.json
index a89197fe52..5d26859d29 100644
--- a/docs/apis/_category_.json
+++ b/docs/apis/_category_.json
@@ -1,13 +1,5 @@
 {
-    "position": 4,
-    "label": "APIs",
-    "collapsible": false,
-    "collapsed": false,
-    "link": {
-      "type": "generated-index",
-      "title": "APIs"
-    },
-    "customProps" : {
-      "id" : "apis"
-    }
+  "customProps" : {
+    "id" : "apis"
+  }
 }
\ No newline at end of file