{
  "openapi": "3.0.1",
  "info": {
    "title": "Website To Rss",
    "description": "Convert any website into RSS, Atom, or JSON feeds. Auto-detects articles, tracks changes, and sends notifications. Works with WordPress, Ghost, Medium, Substack, and any blog.",
    "version": "2.0",
    "x-build-id": "79UDefDSqLf8juHhQ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/gabrielaxy~website-to-rss/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-gabrielaxy-website-to-rss",
        "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/gabrielaxy~website-to-rss/runs": {
      "post": {
        "operationId": "runs-sync-gabrielaxy-website-to-rss",
        "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/gabrielaxy~website-to-rss/run-sync": {
      "post": {
        "operationId": "run-sync-gabrielaxy-website-to-rss",
        "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": [
          "websiteUrl"
        ],
        "properties": {
          "websiteUrl": {
            "title": "Website URL",
            "type": "string",
            "description": "URL of the website to convert to RSS"
          },
          "feedTitle": {
            "title": "Feed Title",
            "type": "string",
            "description": "Custom title for the RSS feed"
          },
          "feedDescription": {
            "title": "Feed Description",
            "type": "string",
            "description": "Custom description for the RSS feed"
          },
          "discoveryMode": {
            "title": "Discovery Mode",
            "enum": [
              "auto",
              "preset",
              "manual"
            ],
            "type": "string",
            "description": "How to discover content on the site",
            "default": "auto"
          },
          "platformPreset": {
            "title": "Platform Preset",
            "enum": [
              "wordpress",
              "ghost",
              "medium",
              "substack",
              "hugo",
              "jekyll",
              "docusaurus",
              "hashnode",
              "devto",
              "blogger",
              "generic"
            ],
            "type": "string",
            "description": "Pre-configured settings for common platforms (only used when Discovery Mode is 'Use Platform Preset')",
            "default": "wordpress"
          },
          "linkSelector": {
            "title": "Link Selector",
            "type": "string",
            "description": "CSS selector for content links (only used when Discovery Mode is 'Manual Selectors')",
            "default": "a[href]"
          },
          "titleSelector": {
            "title": "Title Selector",
            "type": "string",
            "description": "CSS selector for item titles (only used when Discovery Mode is 'Manual Selectors')",
            "default": "h1, h2, .title"
          },
          "contentSelector": {
            "title": "Content Selector",
            "type": "string",
            "description": "CSS selector for content/description (only used when Discovery Mode is 'Manual Selectors')",
            "default": "article, .content, p"
          },
          "dateSelector": {
            "title": "Date Selector",
            "type": "string",
            "description": "CSS selector for date (only used when Discovery Mode is 'Manual Selectors')"
          },
          "maxItems": {
            "title": "Max Feed Items",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum number of items to include in the feed",
            "default": 50
          },
          "outputFormats": {
            "title": "Output Formats",
            "type": "array",
            "description": "Feed formats to generate (rss, atom, json)",
            "default": [
              "rss",
              "json"
            ],
            "items": {
              "type": "string"
            }
          },
          "proxyConfig": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Proxy settings for web scraping"
          },
          "monitorMode": {
            "title": "Monitor Mode",
            "enum": [
              "new_pages",
              "content_changes",
              "both"
            ],
            "type": "string",
            "description": "What to detect as new content",
            "default": "both"
          },
          "stateStoreName": {
            "title": "State Store Name",
            "type": "string",
            "description": "Named KV store to persist state between runs",
            "default": "website-rss-state"
          },
          "webhookUrl": {
            "title": "Webhook URL",
            "type": "string",
            "description": "Notify this URL when new items are detected"
          },
          "slackWebhook": {
            "title": "Slack Webhook",
            "type": "string",
            "description": "Post new items to Slack channel"
          },
          "urlExcludePatterns": {
            "title": "URL Exclude Patterns",
            "type": "array",
            "description": "Regex patterns for URLs to exclude (e.g., '/author/', '/tag/'). Default patterns exclude common non-article pages.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "urlIncludePatterns": {
            "title": "URL Include Patterns",
            "type": "array",
            "description": "If specified, only URLs matching these patterns are included (e.g., '/blog/', '/posts/')",
            "items": {
              "type": "string"
            }
          },
          "autoDetectArticles": {
            "title": "Auto-Detect Articles",
            "type": "boolean",
            "description": "Use heuristics to automatically detect article pages and filter out listing/navigation pages",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}