# Cross-platform disinformation monitor for OSINT briefings

**Use case:** 

Create repeatable OSINT briefing datasets from Telegram, RSS, and public web seeds with matched keywords and deltas.

## Input

```json
{
  "seeds": [
    {
      "value": "telegram",
      "label": "Telegram News",
      "type": "telegramChannel"
    },
    {
      "value": "https://blog.apify.com/qriton-election-disinformation-analysis/",
      "label": "Qriton case study",
      "type": "url"
    },
    {
      "value": "https://blog.apify.com/rss/",
      "label": "Apify Blog RSS",
      "type": "url"
    }
  ],
  "sourceTypes": [
    "telegram",
    "rss",
    "web"
  ],
  "maxRecordsPerSeed": 40,
  "maxPagesPerSeed": 3,
  "matchKeywords": [
    "election",
    "disinformation",
    "Telegram",
    "TikTok",
    "OSINT"
  ],
  "includeRunDeltas": true,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "source": {
    "label": "Source"
  },
  "recordType": {
    "label": "Record type"
  },
  "matchedEntity": {
    "label": "Entity"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "date"
  },
  "runDelta": {
    "label": "Delta"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Text"
  },
  "matchedKeywords": {
    "label": "Keywords"
  },
  "engagement": {
    "label": "Engagement"
  },
  "contentHash": {
    "label": "Hash"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Cross-platform OSINT Seed-list Monitor](https://apify.com/automation-lab/cross-platform-osint-seed-list-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/cross-platform-osint-seed-list-monitor) to learn more, explore other use cases, and run it yourself.