Nutshell Product Categories API

The ProductCategories API from Nutshell — 2 operation(s) for productcategories.

Operations 3

GET /productcategories List all product categories #
POST /productcategories Create a product category #
GET /productcategories/{id} Get a product category #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nutshell-productcategories-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nutshell-productcategories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nutshell Product Categories API
  description: The most powerful API in the world
  version: 2.0.0
  contact:
    name: Nutshell Developers
    url: https://developers.nutshell.com
servers:
- url: https://app.nutshell.com/rest
  description: Nutshell REST API
tags:
- name: ProductCategories
paths:
  /productcategories:
    get:
      tags:
      - ProductCategories
      summary: List all product categories
      operationId: 717f48307abd255776158e66cbbe8656
      responses:
        '200':
          description: List of product categories
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductCategoryResponse'
      security:
      - basicAuth: []
    post:
      tags:
      - ProductCategories
      summary: Create a product category
      description: Create a new product category. Product categories are used to organize products into groups.
      operationId: 6b6ddd29d78bb86bfa27c73614f601ff
      requestBody:
        description: Name is required.
        required: true
        content:
          application/json:
            schema:
              properties:
                productCategories:
                  type: array
                  items:
                    properties:
                      name:
                        type: string
                        example: Electronics
                    type: object
              type: object
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductCategoryResponse'
        '400':
          description: Bad Request
      security:
      - basicAuth: []
  /productcategories/{id}:
    get:
      tags:
      - ProductCategories
      summary: Get a product category
      operationId: e35b57d17d5dad46410b632e6e4a539d
      parameters:
      - name: id
        in: path
        description: Product Category ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Product category
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductCategoryResponse'
      security:
      - basicAuth: []
components:
  schemas:
    ProductCategoryResponse:
      description: A full response object for a product category-related endpoint.
      properties:
        productCategories:
          type: array
          items:
            $ref: '#/components/schemas/ProductCategory'
      type: object
    ProductCategory:
      properties:
        id:
          description: The API ID of this entity, formatted {integer}-{entityType}
          type: string
          example: 3-contacts
        name: {}
        modifiedTime:
          type: integer
        href: {}
      type: object
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic