{
  "openapi": "3.0.1",
  "info": {
    "title": "RSS Feed Monitor - Only New Items, Atom & JSON Feed, Podcasts",
    "description": "Read hundreds of RSS, Atom and JSON feeds in one run and get clean, deduplicated items. Turn on 'only new items' and schedule it: every run delivers exactly what was published since the last one. Feed autodiscovery from any site URL. Pay per feed check and per item.",
    "version": "0.1",
    "x-build-id": "7pc3Lp77yAdn7vc9R"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/bruco3~feed-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-bruco3-feed-monitor",
        "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/bruco3~feed-monitor/runs": {
      "post": {
        "operationId": "runs-sync-bruco3-feed-monitor",
        "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/bruco3~feed-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-bruco3-feed-monitor",
        "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",
        "properties": {
          "feeds": {
            "title": "Feed URLs",
            "type": "array",
            "description": "RSS 2.0, RSS 1.0, Atom or JSON Feed URLs, one per line (or upload a text file). Podcast feeds work too. Hundreds of feeds in one run are fine.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Or: websites to discover feeds from",
            "type": "array",
            "description": "Paste a blog or news site and its feed is found for you through <code>&lt;link rel=\"alternate\"&gt;</code> tags and common paths (<code>/feed</code>, <code>/rss.xml</code>, <code>/atom.xml</code>, …).",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "onlyNew": {
            "title": "Only new items since the last run",
            "type": "boolean",
            "description": "Each feed remembers which items it has already delivered (in a named key-value store). Turn this on and schedule the Actor: every run returns exactly what was published since the previous run.",
            "default": true
          },
          "firstRun": {
            "title": "On the first run of a feed",
            "enum": [
              "emit",
              "seed"
            ],
            "type": "string",
            "description": "<b>Deliver everything</b> returns all current items the first time a feed is seen. <b>Seed only</b> remembers them without returning anything, so the very next run already delivers only new items.",
            "default": "emit"
          },
          "since": {
            "title": "Only items published since",
            "type": "string",
            "description": "ISO date (<code>2026-01-31</code>) or a window like <code>24h</code>, <code>7d</code>, <code>2w</code>. Items without a date are dropped when this is set."
          },
          "includeRegex": {
            "title": "Only items whose title or summary matches",
            "type": "string",
            "description": "Case-insensitive regular expression, e.g. <code>python|rust</code>."
          },
          "excludeRegex": {
            "title": "Skip items whose title or summary matches",
            "type": "string",
            "description": "Case-insensitive regular expression, e.g. <code>sponsored|webinar</code>."
          },
          "includeContent": {
            "title": "Include full item content (HTML)",
            "type": "boolean",
            "description": "Adds <code>contentHtml</code> with the full article body when the feed provides it. Off by default to keep rows small.",
            "default": false
          },
          "maxItemsPerFeed": {
            "title": "Maximum items per feed",
            "minimum": 0,
            "type": "integer",
            "description": "<code>0</code> = no limit.",
            "default": 0
          },
          "dedupeAcrossFeeds": {
            "title": "Deduplicate the same link across feeds",
            "type": "boolean",
            "description": "When several feeds carry the same article, deliver it once.",
            "default": true
          },
          "snapshotStoreName": {
            "title": "Snapshot store name",
            "type": "string",
            "description": "Named key-value store that remembers delivered items, one snapshot per feed. Use different names to track the same feeds independently.",
            "default": "feed-monitor-snapshots"
          },
          "concurrency": {
            "title": "Parallel feed downloads",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many feeds to fetch at once.",
            "default": 10
          },
          "userAgent": {
            "title": "User-Agent",
            "type": "string",
            "description": "Sent with every request.",
            "default": "FeedMonitor/1.0 (+https://apify.com/bruco3/feed-monitor)"
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Not needed for public feeds. Enable only if a publisher blocks datacenter traffic.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}