{
  "openapi": "3.0.1",
  "info": {
    "title": "Changelog & Release Notes Scraper",
    "description": "Tracks release notes, changelogs and status incidents across 59 curated sources — AWS, Google Cloud, Azure, Cloudflare, GitHub, Anthropic, Stripe and more — plus any GitHub repo, npm/PyPI/crates package, or RSS/Atom feed. Every vendor lands in one normalised row shape with one UTC date column.",
    "version": "0.1",
    "x-build-id": "7x2HLbTb2AT9COS4L"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapyx~changelog-releases-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapyx-changelog-releases-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/scrapyx~changelog-releases-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapyx-changelog-releases-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/scrapyx~changelog-releases-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapyx-changelog-releases-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",
        "properties": {
          "preset": {
            "title": "Source preset",
            "enum": [
              "",
              "all",
              "cloud-providers",
              "ai-platforms",
              "devtools",
              "databases",
              "languages",
              "browsers-mobile",
              "status-pages",
              "saas",
              "security"
            ],
            "type": "string",
            "description": "Pick a whole family of sources at once, instead of naming them one by one. Combines with `sources` — you get the union, de-duplicated.\n\n`all` crawls the entire 59-source catalog. Leave blank to use only what you list in `sources`.",
            "default": ""
          },
          "sources": {
            "title": "Sources",
            "type": "array",
            "description": "One source per entry. Four forms are accepted and can be mixed freely in one run:\n\n• **Catalog key** — `aws`, `gcp`, `azure`, `cloudflare`, `github`, `anthropic`, `stripe`, `vercel`, `kubernetes`, `linear`… (59 curated sources; a catalog key always wins over the other forms)\n• **GitHub repo** — `github:owner/repo`, e.g. `github:redis/redis`. Works for any public repo; a pasted `https://github.com/owner/repo` URL is accepted too\n• **Package registry** — `npm:react`, `pypi:django`, `crates:serde`, `gem:rails`, `nuget:Newtonsoft.Json`, `packagist:laravel/framework`, `hashicorp:vault`, `eol:nodejs`\n• **Any feed URL** — any RSS, Atom, RDF or JSON Feed address, e.g. `https://blog.rust-lang.org/feed.xml`",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxItemsPerSource": {
            "title": "Max entries per source",
            "minimum": 0,
            "type": "integer",
            "description": "Newest entries first, per source. Set to 0 for everything the source carries — worth knowing that some feeds are large (Oracle Cloud 2,960 entries, Vercel 1,532, npm packages several thousand versions), so 0 across a big preset produces a very large dataset.",
            "default": 50
          },
          "sinceDate": {
            "title": "Only entries since",
            "type": "string",
            "description": "Keep only entries published on or after this date. `YYYY-MM-DD` or a full ISO 8601 timestamp.\n\nEntries with no date are KEPT rather than dropped — some sources (notably NuGet) publish no timestamps at all, and dropping them would make those sources look empty rather than undated.",
            "default": ""
          },
          "keywords": {
            "title": "Keyword filter",
            "type": "array",
            "description": "Keep only entries mentioning at least one of these (case-insensitive), matched against title, summary, body text, version and categories. Leave empty for no keyword filtering.\n\nUseful for watching one product across many vendors — e.g. `kubernetes`, or `deprecat` to catch both \"deprecated\" and \"deprecation\".",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeContent": {
            "title": "Include full entry body",
            "type": "boolean",
            "description": "Include the full release body (`contentHtml`, `contentText`) and the untouched upstream object (`raw`) on every row. Turn this off for a compact release index — titles, dates, versions and links only, which is dramatically smaller across a large preset.",
            "default": true
          },
          "githubToken": {
            "title": "GitHub token (optional)",
            "type": "string",
            "description": "Optional, and only affects `github:` sources. Without it those sources read github.com's `releases.atom`, which needs no credentials but serves exactly 10 releases and cannot paginate.\n\nWith a token, they switch to the REST API: full release history, plus draft/prerelease flags and asset lists. It also lifts GitHub's unauthenticated limit of 60 requests/hour per IP to 5,000/hour — worth setting if you track many repos. A read-only classic token with no scopes is enough for public repos.\n\n(This field intentionally has no default value — Apify rejects a `default` on a secret input at build time.)"
          },
          "maxConcurrency": {
            "title": "Max concurrent requests",
            "minimum": 1,
            "maximum": 32,
            "type": "integer",
            "description": "Upper bound on requests in flight at once, across all sources. Sources sit on ~57 independent hosts, so concurrency here spreads across vendors rather than hammering one.",
            "default": 8
          },
          "minRequestInterval": {
            "title": "Minimum seconds between request starts",
            "minimum": 0,
            "maximum": 60,
            "type": "number",
            "description": "Paces when requests START, without holding a concurrency slot. The default of 0 is deliberate: these are public feeds published to be polled, spread across dozens of hosts, and none rate-limited during testing. Raise it if you crawl one vendor's feeds heavily.",
            "default": 0
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Off by default, unusually for this portfolio — and deliberately. Every source is a public feed a vendor publishes for machines to read: no auth, no cookie, no bot challenge was observed on any of the 59 during testing. A proxy adds latency and a failure mode without buying access. Enable it only if you need a specific egress country or IP.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}