Listings Monitor - News, blogs, issues, articles, products etc. avatar
Listings Monitor - News, blogs, issues, articles, products etc.
Try for free

No credit card required

View all Actors
Listings Monitor - News, blogs, issues, articles, products etc.

Listings Monitor - News, blogs, issues, articles, products etc.

cyberfly/listingmonitor
Try for free

No credit card required

Monitor content and listings on the web using optional keywords and filters. Take actions or receive alerts (e-mail, mobile push notifications etc.) on changes of interest. Use existing configs or easily create or request new ones. Useful for things like news, jobs, articles, products etc.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "selectors": [
8    "table table tr[class='athing'] td:nth-child(3) > span > a"
9  ],
10  "scrapers": "// (input) => ({\r\n//     title: {\r\n//         selectors: [\"table table tr[class='athing'] td:nth-child(3) > span > a\"],\r\n//         extractor: node => node.innerText,\r\n//     },\r\n//     links: {\r\n//         contents: {\r\n//             selectors: [\"table table tr[class='athing'] td:nth-child(3) > span > a\"],\r\n//             extractor: node => node.href,\r\n//         },\r\n//         comments: {\r\n//             selectors: [\"table table tr td[class='subtext'] span a[href^=item]:first-child\"],\r\n//             extractor: node => node.href,\r\n//         },\r\n//     },\r\n// })",
11  "filters": "// [\r\n// \t({title}) => title.length > 1,\r\n// \t({links}) => links.contents.includes('http'),\r\n// \t({price}, {price: oldPrice}) => price < oldPrice,\r\n// ]",
12  "matcher": "// E.g. exclude dynamic \"price\":\r\n// ({price, ...match}) => match",
13  "pages.retries": 3,
14  "hooks.load": "// async page => {\n// \tawait page.click('button[name=\"cookie-consent\"]').catch(error => null);\n// }",
15  "limits.alerts": 10,
16  "limits.results": 100,
17  "proxy": {
18    "useApifyProxy": false
19  }
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/cyberfly~listingmonitor/runs?token=$API_TOKEN" \
26  -X POST \
27  -d @input.json \
28  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 2 stars
  • 100.0% runs succeeded
  • Created in Jan 2024
  • Modified 22 days ago
Categories