# Investor Page Monitor (`junipr/investor-page-monitor`) Actor

Monitor investor relations pages for decks, event pages, presentations, filings, and update signals.

- **URL**: https://apify.com/junipr/investor-page-monitor.md
- **Developed by:** [junipr](https://apify.com/junipr) (community)
- **Categories:** SEO tools, Automation, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.50 / 1,000 target checkeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Investor Page Monitor

Compare investor-relations pages and return classified changes to earnings releases, SEC filings, annual reports, presentations, webcasts, investor events, press releases, and governance documents.

### How It Works

The actor extracts qualifying links from prior and current HTML snapshots, resolves relative URLs against the page URL, classifies each artifact from its title and path, and compares the normalized asset sets. It filters ordinary navigation links so results focus on investor materials.

For API-derived data, use `previousAssets` and `currentAssets` arrays with fields such as `title`, `url`, `artifactType`, and `publishedDate`.

### Example Input

```json
{
  "targets": [
    {
      "sourceId": "acme-investors",
      "sourceUrl": "https://example.com/investors",
      "company": "Acme Corp",
      "previousSnapshot": "<a href=\"/financials/q1-results.pdf\">Q1 results presentation</a><a href=\"/events\">Events</a>",
      "currentSnapshot": "<a data-date=\"2026-07-20\" href=\"/financials/q2-results.pdf\">Q2 results presentation</a><a href=\"/investor-day-2026\">Investor Day 2026</a><a href=\"/filings/8-k-2026-07-20.pdf\">Form 8-K</a>"
    }
  ],
  "maxTargets": 1,
  "maxAssetsPerTarget": 250,
  "includeUnchanged": false,
  "includeReport": true
}
```

### Output

Each row includes:

- Source fields: `sourceId`, `sourceUrl`, `sourceType`, and `checkedAt`
- Company and artifact identity: `company`, `artifactKey`, `artifactType`, and `artifactTitle`
- Comparison evidence: old/new title, old/new URL, old/new publication date, file extension, and document format
- Decision fields: `changeType`, `status`, `severity`, `score`, `summary`, and `recommendation`

`changeType` is `added`, `removed`, `url-changed`, `title-changed`, `date-changed`, or `unchanged`.

Failed fetches and pages with no qualifying IR links produce an explicit diagnostic row through `diagnosticCode` and `sourceError`.

### Example Output

```json
{
  "company": "Acme Corp",
  "artifactType": "filing",
  "artifactTitle": "Form 8-K",
  "oldUrl": null,
  "newUrl": "https://example.com/filings/8-k-2026-07-20.pdf",
  "publishedDate": "2026-07-20",
  "fileExtension": "pdf",
  "documentFormat": "PDF",
  "changeType": "added",
  "severity": "high"
}
```

### PPE Pricing

Event prices include Apify platform usage for the configured fixed-inclusive model.

- `actor-start`: $0.02000 once per paid run
- `target-checked`: $0.00650 per investor page target
- `snapshot-compared`: $0.00650 per comparison
- `change-detected`: $0.01300 per emitted change
- `digest-generated`: $0.05000 when digest artifacts are written
- `executive-report-generated`: $0.10000 when the Markdown report is written

The actor stops before additional output when the charge limit cannot cover the next paid event.

### Limits

- Up to 50 page targets and 2,000 classified assets per snapshot.
- Link classification is deterministic and keyword-based. Ambiguous links without IR evidence are omitted.
- JavaScript-rendered pages must be supplied as rendered HTML or structured asset arrays; this actor uses HTTP fetches, not a browser.
- A fetched current page still needs a supplied previous snapshot or asset list for comparison.

# Actor input Schema

## `targets` (type: `array`):

Capped previous/current page comparisons.

## `sourceUrl` (type: `string`):

Base URL for relative links and optional current-page fetch.

## `company` (type: `string`):

Company name attached to result rows.

## `previousSnapshot` (type: `string`):

Prior investor-page HTML.

## `currentSnapshot` (type: `string`):

Current investor-page HTML.

## `previousAssets` (type: `array`):

Prior structured IR assets.

## `currentAssets` (type: `array`):

Current structured IR assets.

## `fetchUrls` (type: `boolean`):

Fetch sourceUrl when currentSnapshot is omitted.

## `fetchTimeoutMs` (type: `integer`):

Per-request timeout in milliseconds.

## `maxTargets` (type: `integer`):

Maximum investor-page comparisons.

## `maxAssetsPerTarget` (type: `integer`):

Maximum classified links read from each snapshot.

## `maxTextBytes` (type: `integer`):

Maximum bytes retained per snapshot.

## `includeUnchanged` (type: `boolean`):

Emit assets present with identical normalized details.

## `includeReport` (type: `boolean`):

Write JSON result, JSON summary, and Markdown digest artifacts.

## `dryRun` (type: `boolean`):

Validate input without paid output.

## `debug` (type: `boolean`):

Enable debug logging.

## Actor input object example

```json
{
  "targets": [],
  "sourceUrl": "",
  "company": "",
  "previousSnapshot": "",
  "currentSnapshot": "",
  "previousAssets": [],
  "currentAssets": [],
  "fetchUrls": false,
  "fetchTimeoutMs": 10000,
  "maxTargets": 1,
  "maxAssetsPerTarget": 250,
  "maxTextBytes": 120000,
  "includeUnchanged": false,
  "includeReport": true,
  "dryRun": false,
  "debug": false
}
```

# Actor output Schema

## `results` (type: `string`):

IR artifact changes.

## `resultsJson` (type: `string`):

All artifact changes as JSON.

## `summary` (type: `string`):

Change counts by artifact type.

## `markdownReport` (type: `string`):

Readable investor relations change digest.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("junipr/investor-page-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("junipr/investor-page-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call junipr/investor-page-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=junipr/investor-page-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/W6w4o7oSqo7Ll95bp/builds/Mgy3fo9HDp0wksStj/openapi.json
