> ## Documentation Index
> Fetch the complete documentation index at: https://developers.nutshell.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List all products

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Nutshell API",
    "description": "The most powerful API in the world",
    "version": "2.0.0"
  },
  "servers": [
    {
      "url": "app.nutshell.com/rest"
    }
  ],
  "paths": {
    "/products": {
      "get": {
        "tags": [
          "Products"
        ],
        "summary": "List all products",
        "operationId": "09a50065f621a61a55b5bc5c0df3f338",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Filter for matching name or sku",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "name",
                "-name",
                "sku",
                "-sku"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List of products",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "basicAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "ProductResponse": {
        "description": "A full response object for a product-related endpoint.",
        "properties": {
          "products": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Product"
            }
          }
        },
        "type": "object"
      },
      "Product": {
        "properties": {
          "id": {
            "description": "The API ID of this entity, formatted {integer}-{entityType}",
            "type": "string",
            "example": "3-contacts"
          },
          "name": {},
          "href": {},
          "description": {},
          "modifiedTime": {
            "type": "integer"
          },
          "deletedTime": {
            "type": "string",
            "format": "date-time"
          },
          "sku": {},
          "productType": {},
          "prices": {
            "properties": {
              "1-markets": {
                "$ref": "#/components/schemas/productPrice"
              }
            },
            "type": "object"
          },
          "price": {
            "$ref": "#/components/schemas/productPrice"
          }
        },
        "type": "object"
      },
      "productPrice": {
        "properties": {
          "amount": {
            "type": "number"
          },
          "currency": {
            "type": "string"
          },
          "formatted": {
            "type": "string"
          },
          "currencySymbol": {
            "type": "string"
          }
        },
        "type": "object"
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "tags": [
    {
      "name": "Products",
      "description": "Products"
    }
  ]
}
```