Magento 2 (Adobe Commerce) Categories API

The Categories API from Magento 2 (Adobe Commerce) — 2 operation(s) for categories.

OpenAPI Specification

magento-2-categories-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Adobe Commerce (Magento 2) REST Auth Categories API
  description: Adobe Commerce (formerly Magento 2) exposes a REST API at the `/rest/{store-code}/V1/` (or simply `/rest/V1/`) base path for managing products, orders, customers, carts, categories, and other commerce resources. Authentication supports admin and customer integration tokens issued by the API, plus OAuth 1.0a for third-party integrations.
  version: 1.0.0
  contact:
    name: Adobe Commerce
    url: https://developer.adobe.com/commerce/webapi/rest/
servers:
- url: https://{host}/rest/{storeCode}
  description: Adobe Commerce instance (replace {host} with your storefront and {storeCode} with `V1` or e.g. `default`)
  variables:
    host:
      default: example.com
    storeCode:
      default: V1
security:
- BearerAuth: []
tags:
- name: Categories
paths:
  /V1/categories:
    get:
      tags:
      - Categories
      summary: Get the category tree
      operationId: getCategoryTree
      responses:
        '200':
          description: Category tree
  /V1/categories/{categoryId}:
    get:
      tags:
      - Categories
      summary: Get category by ID
      operationId: getCategory
      parameters:
      - name: categoryId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Category
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token obtained from /V1/integration/admin/token or /V1/integration/customer/token.