# Scrape Telegram Posts Newer Than a Date

**Use case:** 

Incremental Telegram channel monitoring — only posts published after your cutoff date.

## Input

```json
{
  "channels": [
    "telegram"
  ],
  "postsLimit": 10,
  "oldestPostDate": "2020-01-01",
  "includeChannelInfo": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "channel": {
    "label": "Channel",
    "format": "string"
  },
  "post_id": {
    "label": "Post",
    "format": "integer"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "subscribers": {
    "label": "Subscribers",
    "format": "integer"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Channel Posts Scraper](https://apify.com/leorochasantos/telegram-channel-posts) with a specific input configuration. Visit the [Actor detail page](https://apify.com/leorochasantos/telegram-channel-posts) to learn more, explore other use cases, and run it yourself.