{
  "openapi": "3.0.1",
  "info": {
    "title": "Gumroad Products Scraper",
    "description": "Scrapes Gumroad products from any category, search, or discover URL and returns all product details including name, price, seller, ratings, thumbnail, and plain-text descriptions.",
    "version": "0.0",
    "x-build-id": "hzYi2nU9dnYUejcgt"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/zerobreak~gumroad-products-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-zerobreak-gumroad-products-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/zerobreak~gumroad-products-scraper/runs": {
      "post": {
        "operationId": "runs-sync-zerobreak-gumroad-products-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/zerobreak~gumroad-products-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-zerobreak-gumroad-products-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "modes"
        ],
        "properties": {
          "modes": {
            "title": "Search Modes",
            "minItems": 1,
            "maxItems": 3,
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more search modes to use",
            "items": {
              "type": "string",
              "enum": [
                "query",
                "filter",
                "url"
              ],
              "enumTitles": [
                "Query Search",
                "Filter Search",
                "URL Search"
              ]
            },
            "default": [
              "query",
              "filter",
              "url"
            ]
          },
          "queries": {
            "title": "Search Queries",
            "type": "array",
            "description": "List of search queries (for 'query' mode)",
            "items": {
              "type": "string"
            },
            "default": [
              "graphic design",
              "stock photos",
              "music beats"
            ]
          },
          "urls": {
            "title": "Gumroad URLs",
            "type": "array",
            "description": "List of Gumroad URLs to scrape (for 'url' mode)",
            "items": {
              "type": "string"
            },
            "default": [
              "https://gumroad.com/l/example-product-1",
              "https://gumroad.com/l/example-product-2"
            ]
          },
          "tags": {
            "title": "Tags Filter",
            "type": "array",
            "description": "Filter by tags (for 'filter' mode)",
            "items": {
              "type": "string"
            },
            "default": [
              "art",
              "design",
              "photography"
            ]
          },
          "fileTypes": {
            "title": "File Types Filter",
            "type": "array",
            "description": "Filter by specific file extensions (e.g., pdf, zip)",
            "items": {
              "type": "string"
            },
            "default": [
              "pdf",
              "zip",
              "mp3"
            ]
          },
          "category": {
            "title": "Category Filter",
            "enum": [
              "",
              "art",
              "design",
              "software",
              "writing",
              "music",
              "photography",
              "business",
              "other"
            ],
            "type": "string",
            "description": "Select a specific Gumroad category to filter results",
            "default": "design"
          },
          "rating": {
            "title": "Minimum Rating Filter",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "Filter products by a minimum star rating (1-5)",
            "default": 4
          },
          "priceMin": {
            "title": "Minimum Price Filter ($)",
            "minimum": 0,
            "type": "number",
            "description": "The lowest price to include in results",
            "default": 5
          },
          "priceMax": {
            "title": "Maximum Price Filter ($)",
            "minimum": 0,
            "type": "number",
            "description": "The highest price to include in results",
            "default": 50
          },
          "filterQuery": {
            "title": "Additional Filter Query",
            "type": "string",
            "description": "A search string to refine the results within the filter mode",
            "default": "modern aesthetic"
          },
          "limit": {
            "title": "Result Limit",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of total products to return",
            "default": 50
          },
          "sort": {
            "title": "Sort Results By",
            "enum": [
              "relevance",
              "newest",
              "highest_rated",
              "most_popular",
              "price_low_high",
              "price_high_low"
            ],
            "type": "string",
            "description": "How to order the products in the final output",
            "default": "highest_rated"
          },
          "pages": {
            "title": "Pages to Scrape",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "The number of search result pages to browse through",
            "default": 3
          },
          "perPage": {
            "title": "Results Per Page",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Number of items to fetch per request (default is 24)",
            "default": 24
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}