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

# Get Products



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_GET_PRODUCTS
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#SHOPIFY_GET_PRODUCTS:
    post:
      summary: Get Products
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: SHOPIFY_GET_PRODUCTS
                parameters:
                  type: object
                  properties:
                    productIds:
                      type: string
                      description: >-
                        Product IDs : Only return products matching the IDs
                        provided. You can enter an array or a comma-separated
                        list of IDs. (example: "632910392, 632910393")
                    title:
                      type: string
                      description: Title
                    productType:
                      type: string
                      description: Product Type
                    vendor:
                      type: string
                      description: Vendor
                    status:
                      type: string
                      description: Status
                      enum:
                        - active
                        - archived
                        - draft
                    createdAtMin:
                      type: string
                      description: >-
                        Created After : Only return products created after the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    createdAtMax:
                      type: string
                      description: >-
                        Created Before : Only return products created before the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    updatedAtMin:
                      type: string
                      description: >-
                        Updated after : Only return products updated after the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    updatedAtMax:
                      type: string
                      description: >-
                        Updated before : Only return products updated before the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    limit:
                      type: string
                      description: >-
                        Limit results : Limit the maximum number of products to
                        return. Defaults to 250 if left blank. Pagination only
                        accepts the limit field. Other fields cannot be used for
                        filtering the paginated records.
                  x-integration: shopify
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````