Infusionsoft (Keap) Product API

Products-Endpoint

Operations 22

GET /v1/products List Products #
POST /v1/products Create a Product #
GET /v1/products/sync Retrieve Synced Products #
GET /v1/products/{productId} Retrieve a Product #
DELETE /v1/products/{productId} Delete a Product #
PATCH /v1/products/{productId} Update a Product #
POST /v1/products/{productId}/image Upload a product image #
DELETE /v1/products/{productId}/image Delete a product image #
POST /v1/products/{productId}/subscriptions Create a Product Subscription #
GET /v1/products/{productId}/subscriptions/{subscriptionId} Retrieve a Product Subscription #
DELETE /v1/products/{productId}/subscriptions/{subscriptionId} Delete a Product Subscription #
POST /rest/v1/products/{productId}/subscriptions Create a Product Subscription #
POST /rest/v1/products/{productId}/image Upload a product image #
DELETE /rest/v1/products/{productId}/image Delete a product image #
GET /rest/v1/products List Products #
POST /rest/v1/products Create a Product #
GET /rest/v1/products/{productId} Retrieve a Product #
DELETE /rest/v1/products/{productId} Delete a Product #
PATCH /rest/v1/products/{productId} Update a Product #
GET /rest/v1/products/{productId}/subscriptions/{subscriptionId} Retrieve a Product Subscription #
DELETE /rest/v1/products/{productId}/subscriptions/{subscriptionId} Delete a Product Subscription #
GET /rest/v1/products/sync Retrieve Synced Products #

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/infusionsoft-product-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

infusionsoft-product-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infusionsoft Product API
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: '1.0'
  description: 'Operations tagged Product across 3 of this provider''s published API definitions: infusionsoft-rest-v1-2025-11-05-openapi-original.json, infusionsoft-rest-v1-openapi-original.json, infusionsoft-rest-v1-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.infusionsoft.com/crm/rest
- url: https://api.infusionsoft.com/crm
tags:
- name: Product
  description: Products-Endpoint
paths:
  /v1/products:
    get:
      tags:
      - Product
      summary: List Products
      description: Retrieves a list of all products
      operationId: listProductsUsingGET
      parameters:
      - name: active
        in: query
        description: Sets status of items to return
        schema:
          type: boolean
      - name: limit
        in: query
        description: Sets a total of items to return
        schema:
          type: integer
          format: int32
        example: 0
      - name: offset
        in: query
        description: Sets a beginning range of items to return
        schema:
          type: integer
          format: int32
        example: 0
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                title: ProductList
                type: object
                properties:
                  count:
                    type: integer
                    format: int32
                  next:
                    type: string
                  previous:
                    type: string
                  products:
                    type: array
                    items:
                      title: Product_
                      type: object
                      properties:
                        id:
                          type: integer
                          format: int64
                        product_desc:
                          type: string
                        product_name:
                          type: string
                        product_options:
                          type: array
                          items:
                            title: ProductOption
                            type: object
                            properties:
                              allow_spaces:
                                type: boolean
                              can_contain_character:
                                type: boolean
                              can_contain_number:
                                type: boolean
                              can_end_with_character:
                                type: boolean
                              can_end_with_number:
                                type: boolean
                              can_start_with_character:
                                type: boolean
                              can_start_with_number:
                                type: boolean
                              display_index:
                                type: integer
                                format: int32
                              id:
                                type: integer
                                format: int64
                              label:
                                type: string
                              max_chars:
                                type: integer
                                format: int32
                              min_chars:
                                type: integer
                                format: int32
                              name:
                                type: string
                              required:
                                type: boolean
                              text_message:
                                type: string
                              type:
                                type: string
                                enum:
                                - FixedList
                                - Variable
                              values:
                                type: array
                                items:
                                  title: ProductOptionValue
                                  type: object
                                  properties:
                                    id:
                                      type: integer
                                      format: int64
                                    index:
                                      type: integer
                                      format: int64
                                    is_default:
                                      type: boolean
                                    label:
                                      type: string
                                    price_adjustment:
                                      type: number
                                      format: double
                                    sku:
                                      type: string
                        product_price:
                          type: number
                          format: double
                        product_short_desc:
                          type: string
                        sku:
                          type: string
                        status:
                          type: integer
                          format: int32
                        subscription_only:
                          type: boolean
                        subscription_plans:
                          type: array
                          items:
                            title: SubscriptionPlan_
                            type: object
                            properties:
                              active:
                                type: boolean
                              cycle:
                                type: integer
                                format: int32
                              frequency:
                                type: integer
                                format: int32
                              id:
                                type: integer
                                format: int64
                              number_of_cycles:
                                type: integer
                                format: int32
                              plan_price:
                                type: number
                                format: double
                              subscription_plan_index:
                                type: integer
                                format: int32
                              subscription_plan_name:
                                type: string
                              url:
                                type: string
                        url:
                          type: string
                  sync_token:
                    type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
      deprecated: false
    post:
      tags:
      - Product
      summary: Create a Product
      description: Creates a new product
      operationId: createProductUsingPOST
      requestBody:
        description: createProduct
        content:
          application/json:
            schema:
              title: CreateProduct
              required:
              - product_name
              type: object
              properties:
                active:
                  type: boolean
                product_desc:
                  type: string
                product_name:
                  type: string
                product_price:
                  type: number
                  format: double
                product_short_desc:
                  type: string
                sku:
                  type: string
                subscription_only:
                  type: boolean
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                title: RestProductV1
                required:
                - id
                - product_name
                type: object
                properties:
                  active:
                    type: boolean
                  id:
                    type: integer
                    format: int64
                  product_desc:
                    type: string
                  product_name:
                    type: string
                  product_price:
                    type: number
                    format: double
                  product_short_desc:
                    type: string
                  sku:
                    type: string
                  subscription_only:
                    type: boolean
                  subscription_plans:
                    type: array
                    items:
                      title: ProductSubscription
                      required:
                      - cycle_type
                      - id
                      - plan_price
                      type: object
                      properties:
                        active:
                          type: boolean
                        cycle_type:
                          type: string
                          enum:
                          - YEAR
                          - MONTH
                          - WEEK
                          - DAY
                        frequency:
                          type: integer
                          format: int32
                        id:
                          type: integer
                          format: int64
                        number_of_cycles:
                          type: integer
                          format: int32
                        plan_price:
                          type: number
                          format: double
                        subscription_plan_index:
                          type: integer
                          format: int32
                        subscription_plan_name:
                          type: string
                        url:
                          type: string
                  url:
                    type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileN

# --- truncated at 32 KB (245 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/infusionsoft/refs/heads/main/openapi/infusionsoft-product-api-openapi.yml