
Apify Financial Osint
- 99 installs
- 239 repo stars
- Updated June 29, 2026
- apify/awesome-skills
apify-financial-osint is a Claude skill that runs Reddit, Twitter/X, and Trustpilot Apify Actors to gather social-listening sentiment and mention signals for tracked companies.
About
This skill runs social-listening scrapes for tracked portfolio companies through three specific Apify Actors: Reddit sentiment, Twitter/X real-time mentions, and Trustpilot service-quality reviews. A developer uses it when they need to quantify what people are saying about a company for sentiment, crisis signals, or brand perception. It reads company queries from data/companies.json and picks the right actor per signal type.
- Runs three verified Apify Actors for Reddit, Twitter/X, and Trustpilot social listening
- Reads tracked companies from data/companies.json and pre-routes actors per company
- Restricts to an exhaustive allowlist of actors, no WebSearch or browser tools
Apify Financial Osint by the numbers
- 99 all-time installs (skills.sh)
- Ranked #819 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
apify-financial-osint capabilities & compatibility
Requires an Apify account; actors are pay-per-result (Reddit $1.49/1k, Twitter $0.25/1k, Trustpilot $3.00/1k).
- Capabilities
- sentiment analysis · social listening · web scraping
- Use cases
- data analysis · research · web scraping
- Runs
- Runs locally
- Pricing
- Bring your own API key
What apify-financial-osint says it does
Three verified Apify Actors only — Reddit (sentiment + threaded discussion), Twitter/X (real-time mentions, crisis monitoring), Trustpilot (customer satisfaction).
Do NOT use any other actor. Do NOT use WebSearch, WebFetch, or browser tools.
npx skills add https://github.com/apify/awesome-skills --skill apify-financial-osintAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 99 |
|---|---|
| repo stars | ★ 239 |
| Last updated | June 29, 2026 |
| Repository | apify/awesome-skills ↗ |
What it does
Quantify social sentiment, mentions, and customer reviews about tracked companies using verified Apify Actors.
Who is it for?
Tracking sentiment, mentions, and reviews for a defined set of portfolio companies.
Skip if: News lookups (use apify-financial-news) or registry lookups (use apify-public-registries).
When should I use this skill?
The user asks what people are saying about a company, or for sentiment, mentions, reviews, or crisis signals.
What you get
Top results with sentiment and engagement signals per company and signal type.
- Ranked social results with sentiment and engagement signals
By the numbers
- 3 verified Apify Actors
- 4-step task checklist plus Step 0 access check
Files
Financial OSINT — Social Listening
Discover and quantify what the internet is saying about portfolio companies. Three verified Apify Actors only — Reddit (sentiment + threaded discussion), Twitter/X (real-time mentions, crisis monitoring), Trustpilot (customer satisfaction). All actors verified against real demo data with ≥98% success rate.
Prerequisites
- Apify access — preferred:
apifyCLI (npm install -g apify-cli && apify login); fallback: Apify MCP connector (call-actortool). CLI is faster and preferred when both are available. - Companies data at
${CLAUDE_PLUGIN_ROOT}/data/companies.json(read fields:queries.reddit,queries.twitter,trustpilot_urls,identifiers.ticker) - Per-company routing pre-computed at
${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-osint/data/osint-targets.json
${CLAUDE_PLUGIN_ROOT} is the plugin's root directory (where .claude-plugin/ lives). It is resolved automatically by Claude Code when the plugin is installed, or set to the --plugin-dir path during development.
Workflow checklist
Copy this and tick boxes as you progress:
Task Progress:
- [ ] Step 0: Verify Apify access — try `apify --version && apify info`; if unavailable, check for `call-actor` MCP tool; if neither, tell user to install apify CLI or Apify MCP connector
- [ ] Step 1: Pick actor(s) by signal type — see "Choose Actor by Signal" table
- [ ] Step 2: Build input — read data/osint-targets.json or construct from data/companies.json
- [ ] Step 3: Run actor via apify CLI
- [ ] Step 4: Output — present top results with sentiment + engagement signalsConstraints
Allowed Apify Actors (exhaustive — do NOT use others)
| Actor | Purpose | Cost | Success rate |
|---|---|---|---|
fatihtahta/reddit-scraper-search-fast | Reddit sentiment, acquisition reactions, brand perception | $1.49 / 1k results | 98.4% (40,787 runs/30d) |
kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest | Real-time mentions, crisis monitoring, dealflow signals | $0.25 / 1k tweets | 99.7% (4.3/5, 58 reviews) |
getwally.net/trustpilot-reviews-scraper | Service quality, complaint patterns (telcos, e-commerce, banks) | $3.00 / 1k results | verified working |
Do NOT use any other actor. Do NOT use WebSearch, WebFetch, or browser tools.
Choose Actor by Signal
| If you need | Use Actor | When NOT to use |
|---|---|---|
| Sentiment / discussion threads / reactions to corporate events | fatihtahta/reddit-scraper-search-fast | If company has no consumer base (B2B fintech, biotech) — expect <5 posts |
| Real-time mentions / crisis signals / dealflow chatter | kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest | If you need >1 week historical depth — Twitter API limits |
| Customer satisfaction / service quality complaints | getwally.net/trustpilot-reviews-scraper | If company has no Trustpilot page (B2B, holding companies) — see verified URL list in reference/osint-actor-schemas.md Section 3 |
Pipeline
Step 1: Pick actor(s)
For portfolio companies, look up the company in `data/osint-targets.json` — it pre-computes which actors to run with templated inputs. Routing rule (mirrors how the file was built):
queries.redditnon-empty → run Reddit actorqueries.twitternon-empty → run Twitter actor (always set for tracked companies)trustpilot_urlsnon-empty → run Trustpilot actor
For ad-hoc / non-portfolio targets, construct input from scratch (see Step 2).
Step 2: Build input
Reddit input (key fields)
| Field | Type | Default | Notes |
|---|---|---|---|
queries | array of string | required (one of queries / urls / subredditName) | Global Reddit-wide search terms. |
maxPosts | integer | 50000 (!) | ALWAYS set explicitly — typical 30-50 for scans, 100-200 for deep-dives. |
scrapeComments | boolean | false | Set true to extract threaded discussion. |
maxComments | integer | 50000 (!) | Only used when scrapeComments: true. Typical 5–10. |
sort | enum | "relevance" | One of relevance, hot, top, new, comments. (NOT rising / best.) |
timeframe | enum | "all" | One of all, year, month, week, day, hour. Must be >= dateFrom–dateTo range. |
dateFrom | string | — | YYYY-MM-DD. Post-fetch filter: keep posts from this date onward. |
dateTo | string | — | YYYY-MM-DD. Post-fetch filter: keep posts up to this date. |
Example:
apify call fatihtahta/reddit-scraper-search-fast \
--input '{"queries":["InPost FedEx acquisition"],"maxPosts":50,"scrapeComments":true,"maxComments":10,"sort":"relevance","timeframe":"month"}' \
--user-agent apify-awesome-skills/apify-financial-osintTwitter/X input (key fields)
| Field | Type | Default | Notes |
|---|---|---|---|
twitterContent | string | — | One of twitterContent / tweetIDs / searchTerms. Twitter advanced-search syntax (OR, -, from:, since:). |
tweetIDs | array of string | — | Plural — not tweetId. |
searchTerms | array of string | — | Each term gets maxItems results independently. |
maxItems | integer | 200 | REQUIRED — actor fails without it. Pay-per-result. |
queryType | enum | "Latest" | One of Latest, Top, Photos, Videos. |
lang | string | "en" | ISO 639-1. Set cs/pl/hu/bg/sk/tr for single-country B2C; omit for multilingual. |
since / until | string | — | Format: YYYY-MM-DD_HH:MM:SS_UTC (NOT ISO 8601). |
filter:news / filter:media / min_faves / min_retweets | various | — | Engagement / content filters. |
Example:
apify call kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest \
--input '{"twitterContent":"InPost FedEx acquisition OR INPST","maxItems":100,"queryType":"Latest","since":"2026-01-01_00:00:00_UTC","filter:news":true}' \
--user-agent apify-awesome-skills/apify-financial-osintTrustpilot input (only 2 fields exist!)
| Field | Type | Required | Notes |
|---|---|---|---|
startUrls | array of {"url": "..."} objects | Yes | NOT plain strings — array of objects. |
limit | integer | No (default 1000) | Set lower to control cost ($3/1k). |
Example:
apify call getwally.net/trustpilot-reviews-scraper \
--input '{"startUrls":[{"url":"https://www.trustpilot.com/review/inpost.pl"}],"limit":50}' \
--user-agent apify-awesome-skills/apify-financial-osintOlder docs reference fields like maxItems, includeStatistics, includeCompanyDetails, onlyNewerThan — these do NOT exist on this actor.
Step 3: Cost-bound the run
Always cap output before running. Defaults are dangerously high.
| Actor | Cap field | Portfolio scan | Deep-dive |
|---|---|---|---|
maxPosts | 30–50 | 100–200 | |
| Reddit comments | maxComments | 5–10 (only if scrapeComments: true) | 20–50 |
| Twitter/X | maxItems | 50–100 | 200–500 |
| Trustpilot | limit | 30–50 | 100–200 |
Twitter and Trustpilot are pay-per-result — every returned item is billed.
Step 4: Run
Single example pulling Reddit threads + Twitter mentions for InPost (driven by `data/osint-targets.json`):
apify call fatihtahta/reddit-scraper-search-fast \
--input "$(jq -c '.targets[] | select(.company_id=="inpost") | .inputs.reddit' \
${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-osint/data/osint-targets.json)" \
--user-agent apify-awesome-skills/apify-financial-osint \
--output-dataset > reddit_inpost.jsonFull per-actor input schema (all 51 Twitter properties, every Reddit enum, every Trustpilot edge case) plus 30+ example invocations: reference/osint-actor-schemas.md.
Step 4b: Post-filter Reddit results
Reddit search ignores quotes and matches partial words ("InPost" matches "in post game thread"). After fetching, filter results client-side: keep only posts where any of the company's search queries appears as a whole word (case-insensitive) in title or body. Use the queries array from data/osint-targets.json for matching (these are the terms the company is actually known by). Normalise diacritics before comparing (Š↔S, ö↔o, etc.).
Expect 90–95% of raw Reddit results to be false positives. This is normal — maxPosts is set to 200 to compensate.
Step 5: Output
Key output fields per actor:
| Actor | Date field | Date format | URL field | Engagement fields |
|---|---|---|---|---|
created_utc | ISO 8601 (2026-05-01T17:26:41.000Z) | canonical_url | score, num_comments | |
createdAt | Non-standard (Fri May 01 17:35:21 +0000 2026) | url | likeCount, retweetCount, replyCount | |
| Trustpilot | date | ISO 8601 (2026-01-27T21:53:45.000Z) | url (review ID, not company page) | ratingValue (string "1"–"5") |
Present top results with:
- Sentiment hint (positive / negative / neutral) where derivable from text
- Engagement — see table above
- Author / handle
- Date — normalise to YYYY-MM-DD for display
- Permalink
Example output for a sentiment scan:
## OSINT Scan: InPost — Last 30 days
### Reddit (3 posts, 47 comments analyzed)
| Title | Subreddit | Score | Sentiment | Date | URL |
|---|---|---|---|---|---|
| InPost lockers in UK getting better? | r/unitedkingdom | 124 | positive | 2026-04-12 | … |
| Anyone else missing parcels? | r/poland | 38 | negative | 2026-04-09 | … |
### Twitter/X (87 tweets)
| Tweet (truncated) | Author | Likes | Replies | Date | URL |
|---|---|---|---|---|---|
| FedEx-InPost rollout looks promising… | @logistics_eu | 412 | 27 | 2026-04-22 | … |
### Trustpilot (50 reviews — avg 3.2 / 5)
| Rating | Title | Author | Date | URL |
|---|---|---|---|---|
| 5 | Good system, very efficient | Yeison S. | 2026-03-10 | … |
| 1 | Parcel never delivered | Anna K. | 2026-04-18 | … |Per-company routing
`data/osint-targets.json` maps each portfolio company → which OSINT actors to run, with pre-built input templates derived from data/companies.json. Coverage as of v1.0: 31 entries (30 portfolio + group), Reddit 27, Twitter 31, Trustpilot 5, all-three 5, Twitter-only 4. Empty-actor entries reflect verified absence (e.g., MONETA / CETIN / SOTIO have no Trustpilot page).
Critical gotchas (high-frequency mistakes)
- Reddit `maxPosts` default is 50000 — ALWAYS set explicitly (typical: 30–50 for scans).
- Reddit `maxComments` default is 50000 — set low whenever
scrapeComments: true. - Reddit `subredditKeywords` is an array, not a string.
- Reddit `sort` enum has no `"rising"` / `"best"` — only relevance, hot, top, new, comments.
- Reddit `includeNsfw` — lowercase "sfw" (not
includeNSFW). - Twitter `maxItems` is REQUIRED — actor fails without it. Pay-per-result.
- Twitter `since` / `until` format is `YYYY-MM-DD_HH:MM:SS_UTC` (NOT ISO 8601).
- Twitter `tweetIDs` is plural array — not
tweetId. - Twitter `lang` default is `"en"` — set explicitly or omit for all languages.
- Trustpilot `startUrls` must be array of objects with
urlkey — NOT plain strings. - Trustpilot has ONLY 2 input fields (
startUrls,limit) — older docs referencemaxItems,includeStatistics,includeCompanyDetails,onlyNewerThanthat DO NOT EXIST. - Trustpilot `ratingValue` is a STRING ("1"–"5"), not integer — parse before aggregating.
- Trustpilot has no date filter — actor returns most recent first up to
limit; post-filter bydatefield. - Trustpilot URLs verified per company — see "Known Trustpilot URLs" table in
reference/osint-actor-schemas.mdSection 3. Some companies have NO Trustpilot page (B2B holdings, biotech) — running the actor returns 0 reviews.
Full per-actor schemas + 30+ example invocations: reference/osint-actor-schemas.md.
Reference
- data/osint-targets.json — per-company routing + pre-built actor inputs (31 entries)
- reference/osint-actor-schemas.md — verbatim source: all 4 actor schemas with portfolio examples (Section 4 Economic Calendar archived; out of scope for this skill — see PLAN.md)
- Shared portfolio data: `${CLAUDE_PLUGIN_ROOT}/data/companies.json`
{
"_metadata": {
"version": "1.1",
"last_updated": "2026-04-27",
"source": "Derived from data/companies.json (queries.reddit, queries.twitter, trustpilot_urls) + reference/osint-actor-schemas.md PPF examples",
"actors_allowed": [
"fatihtahta/reddit-scraper-search-fast",
"kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest",
"getwally.net/trustpilot-reviews-scraper"
],
"coverage_summary": {
"total_entries": 31,
"reddit": 27,
"twitter": 31,
"trustpilot": 5,
"all_three": 5,
"twitter_only": 4,
"any": 31
},
"coverage_notes": [
"All 30 portfolio companies + group have at least Twitter queries — none fully skipped.",
"Reddit skipped for 4 companies whose queries.reddit is empty in companies.json: ppf-banka (B2B private bank), o2-slovakia, ppf-real-estate (holding), embedit (B2B internal services). yettel-bank does have queries.reddit=['Yettel Bank'] so Reddit IS included.",
"Trustpilot present only for 5 consumer brands with verified URLs: inpost (PL+UK), air-bank (source labeled 'flaky' but page verified 2026-04-27 (TrustScore 2.1, 36 reviews, 2 pages indexed by Google) — 'flaky' likely refers to intermittent scraper issues, not page absence), home-credit (PH + IN), o2-czech-republic, heureka-group. PPF Group has no Trustpilot (holding); MONETA, CETIN, SOTIO have no Trustpilot page per source schema (B2B/biotech).",
"Home Credit trustpilot URLs (PH, IN) are subdomain-style 'www.homecredit.ph' — passed through verbatim as 'https://www.trustpilot.com/review/www.homecredit.ph' per companies.json. Verify before bulk runs. Verified via Google search 2026-04-27: both pages exist and are indexed by Trustpilot under www.homecredit.* domain.",
"lang field set only for single-country B2C non-English brands per brief: cs (Czech retail), pl (InPost), hu (Yettel HU + Yettel Bank), bg (Yettel BG), sk (O2 Slovakia), tr (TEMSA).",
"scrapeComments=true for: banks, B2C consumer brands, recent M&A targets (InPost, PPF Group). false for: B2B (CETIN, ITIS, EmbedIT, VITRONIC), biotechs (SOTIO, Cytune, Cellestia, Autolus), holdings (PPF Real Estate).",
"timeframe='month' for active high-volume targets (InPost FedEx deal, PPF Group, telecom retail, Czech banks). 'year' for low-volume (biotech, B2B, niche industrial) where month would return < 5 posts.",
"ppf-group: companies.json has reddit queries (PPF Group, PPF investments) — included contrary to brief's 'Twitter input only' note. Brief flagged as 'no Reddit queries set' but data says otherwise; followed data.",
"Sazka/Allwyn dropped from companies.json upstream — no entry here (per data/README.md §6 issue #5)."
],
"upstream_issues": [
"osint-actor-schemas.md Section 1 (Reddit): examples at lines ~144-187 (Heureka, Skoda, SOTIO, CME, Dream Yacht) use stale schema fields ('searchQuery' + 'subreddits' array) that do NOT exist in the verified fatihtahta/reddit-scraper-search-fast input schema. Likely carry-over from an older Reddit actor. Our osint-targets.json uses the verified schema ('queries' + 'maxPosts'). Preserved verbatim per project rule.",
"osint-actor-schemas.md Section 2 (Twitter): examples at lines ~357-397 (Heureka, SOTIO, Škoda, Home Credit, CME) use stale fields ('searchQueries' + 'tweetLanguage') not in verified kaitoeasyapi schema (correct: 'searchTerms' + 'lang'). Same carry-over issue. Our routing uses verified field names.",
"osint-actor-schemas.md Section 4 (Economic Calendar — pintostudio/economic-calendar-data-investing-com) preserved verbatim but out of scope per PLAN.md. SKILL.md references only Sections 1-3.",
"Home Credit Trustpilot URLs (www.homecredit.ph, www.homecredit.co.in): verified via Google search 2026-04-27 — both pages exist and are indexed. The 'www.' in Trustpilot path is NOT a typo; Trustpilot registers these businesses under their www subdomain. No fix needed."
]
},
"targets": [
{
"company_id": "inpost",
"actors": [
"reddit",
"twitter",
"trustpilot"
],
"inputs": {
"reddit": {
"queries": [
"InPost",
"INPST",
"InPost parcel"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "InPost OR $INPST OR \"InPost SA\" OR \"InPost parcel\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "pl"
},
"trustpilot": {
"startUrls": [
{
"url": "https://www.trustpilot.com/review/inpost.co.uk"
},
{
"url": "https://www.trustpilot.com/review/inpost.pl"
}
],
"limit": 50
}
}
},
{
"company_id": "moneta-money-bank",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"MONETA Money Bank",
"MONETA banka"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"MONETA Money Bank\" OR \"MONETA banka\" OR $MONET",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
}
}
},
{
"company_id": "prosiebensat1-media",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"ProSiebenSat.1",
"PSM stock"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "ProSiebenSat1 OR ProSieben OR $PSM OR \"ProSiebenSat.1\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "viaplay-group",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Viaplay",
"NENTF"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "Viaplay OR $VPLAY OR \"Viaplay Group\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "autolus-therapeutics",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Autolus Therapeutics"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "Autolus OR $AUTL OR \"Autolus Therapeutics\" OR \"Autolus CAR-T\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "solidcore-resources",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Solidcore Resources",
"Polymetal International",
"POLY gold"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"Solidcore Resources\" OR Polymetal OR $POLY",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "air-bank",
"actors": [
"reddit",
"twitter",
"trustpilot"
],
"inputs": {
"reddit": {
"queries": [
"Air Bank"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Air Bank\" OR \"Air Bank CZ\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
},
"trustpilot": {
"startUrls": [
{
"url": "https://www.trustpilot.com/review/airbank.cz"
}
],
"limit": 50
}
}
},
{
"company_id": "home-credit",
"actors": [
"reddit",
"twitter",
"trustpilot"
],
"inputs": {
"reddit": {
"queries": [
"Home Credit",
"Home Credit International"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Home Credit\" OR \"Home Credit Group\" OR \"Home Credit International\"",
"maxItems": 100,
"queryType": "Latest"
},
"trustpilot": {
"startUrls": [
{
"url": "https://www.trustpilot.com/review/www.homecredit.ph"
},
{
"url": "https://www.trustpilot.com/review/www.homecredit.co.in"
}
],
"limit": 50
}
}
},
{
"company_id": "ppf-banka",
"actors": [
"twitter"
],
"inputs": {
"twitter": {
"twitterContent": "\"PPF banka\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
}
}
},
{
"company_id": "clearbank",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"ClearBank",
"ClearBank fintech"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "ClearBank OR \"ClearBank UK\" OR \"ClearBank fintech\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "yettel-bank",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Yettel Bank"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"Yettel Bank\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "hu"
}
}
},
{
"company_id": "cme",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"TV Nova",
"CME media"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"CME media\" OR \"TV Nova\" OR \"Pro TV Romania\" OR \"CME broadcasting\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "eand-ppf-telecom-group",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"PPF Telecom"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"PPF Telecom\" OR \"e& PPF Telecom\" OR \"eppf telecom\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "o2-czech-republic",
"actors": [
"reddit",
"twitter",
"trustpilot"
],
"inputs": {
"reddit": {
"queries": [
"O2 Czech"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"O2 Czech\" OR \"O2 Česko\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
},
"trustpilot": {
"startUrls": [
{
"url": "https://www.trustpilot.com/review/o2.cz"
}
],
"limit": 50
}
}
},
{
"company_id": "o2-slovakia",
"actors": [
"twitter"
],
"inputs": {
"twitter": {
"twitterContent": "\"O2 Slovakia\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "sk"
}
}
},
{
"company_id": "yettel-serbia",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Yettel Serbia"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Yettel Serbia\" OR \"Yettel Srbija\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "yettel-hungary",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Yettel Hungary"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Yettel Hungary\" OR \"Yettel Magyarorszag\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "hu"
}
}
},
{
"company_id": "yettel-bulgaria",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Yettel Bulgaria"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Yettel Bulgaria\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "bg"
}
}
},
{
"company_id": "cetin-group",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"CETIN telecom"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"CETIN infrastructure\" OR \"CETIN telecom\" OR \"CETIN Group\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "sotio-biotech",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"SOTIO Biotech"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"SOTIO biotech\" OR \"SOTIO pharma\" OR \"SOTIO oncology\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "cytune-pharma",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Cytune Pharma",
"SO-C101"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"Cytune Pharma\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "cellestia-biotech",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Cellestia Biotech"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"Cellestia Biotech\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "heureka-group",
"actors": [
"reddit",
"twitter",
"trustpilot"
],
"inputs": {
"reddit": {
"queries": [
"Heureka.cz"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"Heureka Group\" OR \"Heureka.cz\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
},
"trustpilot": {
"startUrls": [
{
"url": "https://www.trustpilot.com/review/heureka.cz"
}
],
"limit": 50
}
}
},
{
"company_id": "skoda-group",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"Skoda Transportation"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"Skoda Transportation\" OR \"Skoda Group trains\" OR \"Skoda Group trams\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "temsa",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"TEMSA bus",
"TEMSA electric bus"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "\"TEMSA bus\" OR \"TEMSA electric\" OR \"TEMSA otobüs\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "tr"
}
}
},
{
"company_id": "itis-holding",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"CzechToll",
"SkyToll"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "CzechToll OR SkyToll OR \"ITIS Holding\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "vitronic",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"VITRONIC"
],
"maxPosts": 200,
"sort": "relevance",
"timeframe": "year"
},
"twitter": {
"twitterContent": "VITRONIC OR \"VITRONIC machine vision\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "bestsport",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"O2 Arena Prague"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"O2 Arena Prague\" OR \"O2 universum\"",
"maxItems": 100,
"queryType": "Latest",
"lang": "cs"
}
}
},
{
"company_id": "ppf-real-estate",
"actors": [
"twitter"
],
"inputs": {
"twitter": {
"twitterContent": "\"PPF Real Estate\"",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "embedit",
"actors": [
"twitter"
],
"inputs": {
"twitter": {
"twitterContent": "EmbedIT",
"maxItems": 100,
"queryType": "Latest"
}
}
},
{
"company_id": "ppf-group",
"actors": [
"reddit",
"twitter"
],
"inputs": {
"reddit": {
"queries": [
"PPF Group",
"PPF investments"
],
"maxPosts": 200,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month"
},
"twitter": {
"twitterContent": "\"PPF Group\" OR \"Kellnerova PPF\" OR \"PPF invest\" OR \"PPF acquisition\"",
"maxItems": 100,
"queryType": "Latest"
}
}
}
]
}
OSINT Actor Input Schemas — Complete Reference
Last updated: 2026-03-16
Source: Apify API v2 build endpoint (actual inputSchema JSON), verified against demo/data/2w/osint/ outputs.
---
1. Reddit — fatihtahta/reddit-scraper-search-fast
URL: https://apify.com/fatihtahta/reddit-scraper-search-fast Cost: $1.49 / 1,000 results Success rate: 98.4% (30-day: 40,787 runs, 40,112 succeeded) Use case: Reddit sentiment about InPost delivery, O2 CZ service quality, PPF Group acquisition reactions
Input Schema (verified from API)
| Field | Type | Default | Required | Description |
|---|---|---|---|---|
queries | array of string | ["Cheesecake","Swimming Pool"] | One of queries/urls/subredditName | Global keyword search terms. Each query runs a Reddit-wide search. |
urls | array of string | — | One of queries/urls/subredditName | Direct Reddit post/comment/subreddit/user URLs to scrape. |
subredditName | string | — | One of queries/urls/subredditName | Subreddit name (without r/) for subreddit-mode scraping. |
subredditKeywords | array of string | — | No | Keywords to filter posts inside the subreddit. Leave empty to browse all. |
subredditSort | string (enum) | "relevance" | No | Sort order within subreddit. Values: "relevance", "hot", "top", "new", "comments" |
subredditTimeframe | string (enum) | "all" | No | Time filter within subreddit. Values: "all", "year", "month", "week", "day", "hour" |
maxPosts | integer | 50000 | No | Max posts to extract per query/URL. Minimum 10. Set low (10-100) to control costs! |
maxComments | integer | 50000 | No | Max comments per post. Only used when scrapeComments is true. Set low! |
scrapeComments | boolean | false | No | Toggle comment extraction. Must be true for maxComments to take effect. |
sort | string (enum) | "relevance" | No | Sort for search results. Values: "relevance", "hot", "top", "new", "comments" |
timeframe | string (enum) | "all" | No | Time filter for search. Values: "all", "year", "month", "week", "day", "hour" |
includeNsfw | boolean | false | No | Include NSFW content. Note: lowercase "sfw" — NOT includeNSFW. |
⚠️ No `fastMode` or `proxy` fields — these do not exist in the current schema.
Output Fields (per record)
{
"kind": "post",
"id": "1qzy80j",
"title": "...",
"body": "...",
"author": "username",
"score": 651,
"num_comments": 84,
"subreddit": "BuyFromEU",
"created_utc": "2026-02-09T07:48:25.000Z",
"url": "https://www.reddit.com/r/.../comments/.../",
"upvote_ratio": 0.98
}Example Inputs
InPost delivery sentiment (acquisition reactions):
{
"queries": ["InPost parcel locker", "InPost FedEx acquisition", "InPost PPF"],
"maxPosts": 50,
"scrapeComments": true,
"maxComments": 10,
"sort": "relevance",
"timeframe": "month",
"includeNsfw": false
}O2 CZ service quality:
{
"queries": ["O2 Czech Republic", "O2 CZ mobile", "O2 Czechia network"],
"maxPosts": 30,
"sort": "new",
"timeframe": "month",
"scrapeComments": true,
"maxComments": 5
}Group brand perception:
{
"queries": ["PPF Group", "PPF investment", "Petr Kellner PPF"],
"maxPosts": 50,
"sort": "relevance",
"timeframe": "year"
}Subreddit-specific (e.g., r/poland for InPost):
{
"subredditName": "poland",
"subredditKeywords": ["InPost", "delivery", "locker"],
"subredditSort": "relevance",
"subredditTimeframe": "month",
"maxPosts": 30,
"scrapeComments": true,
"maxComments": 5
}InPost peers — logistics sentiment:
{
"queries": ["PostNL delivery", "bpost Belgium", "DHL parcel", "Austrian Post delivery"],
"maxPosts": 30,
"sort": "relevance",
"timeframe": "year",
"scrapeComments": true,
"maxComments": 5
}Allegro e-commerce (InPost competitor):
{
"queries": ["Allegro Poland shopping", "Allegro delivery", "Allegro vs InPost"],
"maxPosts": 30,
"sort": "relevance",
"timeframe": "year"
}Telecom portfolio:
{
"queries": ["Yettel Hungary mobile", "Yettel Bulgaria", "Deutsche Telekom Europe"],
"maxPosts": 30,
"sort": "relevance",
"timeframe": "year"
}Banking/fintech:
{
"queries": ["MONETA Money Bank Czech", "Air Bank Czech", "Home Credit loan"],
"maxPosts": 30,
"sort": "relevance",
"timeframe": "year"
}Heureka Group (price comparison):
{
"searchQuery": "Heureka price comparison",
"subreddits": ["czech", "Cesko"],
"maxPosts": 15
}Škoda Group (transportation):
{
"searchQuery": "Skoda Transportation tram",
"subreddits": ["trains", "transit"],
"maxPosts": 15
}SOTIO biotech:
{
"searchQuery": "SOTIO biotech clinical trial",
"subreddits": ["biotech", "cancer"],
"maxPosts": 15
}CME / TV Nova:
{
"searchQuery": "TV Nova Voyo streaming Czech",
"subreddits": ["czech", "Cesko", "television"],
"maxPosts": 15
}Dream Yacht Charter:
{
"searchQuery": "Dream Yacht Charter review",
"subreddits": ["sailing", "boating", "travel"],
"maxPosts": 15
}Gotchas & Limitations
- `maxPosts` default is 50000 — always set explicitly to avoid scraping everything and burning credits.
subredditKeywordsis an array, not a string.sortenum does NOT include"rising"or"best"— only: relevance, hot, top, new, comments.- Use
subredditSortandsubredditTimeframefor subreddit-mode (these are separate from the globalsort/timeframe). - Residential proxies are used internally — no proxy config field exposed.
---
2. Twitter/X — kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest
URL: https://apify.com/kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest Cost: $0.25 / 1,000 tweets (pay-per-result) Success rate: 99.7% Rating: 4.3/5 (58 reviews) Use case: Twitter/X mentions of InPost, PPF, telecom sector, real-time crisis monitoring
Input Schema (verified from API — 51 properties, key ones below)
Core fields:
| Field | Type | Default | Required | Description |
|---|---|---|---|---|
twitterContent | string | "from:elonmusk make -\"live laugh love\"" | One of twitterContent/tweetIDs/searchTerms | Search query using Twitter advanced search syntax. |
tweetIDs | array of string | ["1846987139428634858"] | One of twitterContent/tweetIDs/searchTerms | Specific tweet IDs to scrape. Note: plural tweetIDs, not tweetId. |
searchTerms | array of string | — | One of twitterContent/tweetIDs/searchTerms | Array of search terms (each follows Twitter search syntax). maxItems applies per term. |
maxItems | integer | 200 | Yes (required) | Max tweets to return. When searchTerms is set, this is per term. |
queryType | string (enum) | "Latest" | No | Search tab. Values: "Latest", "Top", "Photos", "Videos" |
lang | string (enum) | "en" | No | Language filter (ISO 639-1). Includes: "cs", "pl", "hu", "de", "nl", "sk", "bg", etc. |
from | string | — | No | Filter by sender @username (without @). |
Advanced filters (useful for portfolio monitoring):
| Field | Type | Default | Description |
|---|---|---|---|
since | string | "2021-12-31_23:59:59_UTC" | On or after date. Format: YYYY-MM-DD_HH:MM:SS_UTC |
until | string | "2024-12-31_23:59:59_UTC" | Before date. Same format. |
within_time | string | — | Relative time window, e.g. "7d", "24h", "30m" |
near | string | — | Geotagged near place, e.g. "Warsaw", "Prague" |
min_retweets | integer | 0 | Minimum retweet count |
min_faves | integer | 0 | Minimum favorites count |
min_replies | integer | 0 | Minimum reply count |
filter:news | boolean | false | Only tweets with news links |
filter:media | boolean | false | Only tweets with media |
filter:blue_verified | boolean | false | Only blue-verified users |
filter:safe | boolean | false | Exclude NSFW content |
to | string | — | Replying to @username |
@ | string | — | Mentioning @username |
Output Fields (per tweet)
{
"id": "2032250178661388521",
"url": "https://x.com/username/status/...",
"text": "tweet text here",
"retweetCount": 0,
"replyCount": 0,
"likeCount": 0,
"viewCount": 11,
"createdAt": "Fri Mar 13 00:19:34 +0000 2026",
"lang": "pl",
"author": {
"type": "user",
"userName": "...",
"id": "...",
"name": "...",
"isVerified": false,
"isBlueVerified": false,
"followers": 30,
"following": 134,
"statusesCount": 1107,
"description": "..."
}
}Example Inputs
InPost real-time sentiment:
{
"twitterContent": "InPost",
"maxItems": 100,
"queryType": "Latest",
"lang": "en"
}InPost Polish-language mentions:
{
"twitterContent": "InPost paczkomat",
"maxItems": 100,
"queryType": "Latest",
"lang": "pl"
}Group deal reactions:
{
"twitterContent": "PPF Group OR \"PPF investment\" OR \"PPF telecom\"",
"maxItems": 50,
"queryType": "Top"
}O2 CZ + Yettel telecom combined:
{
"twitterContent": "\"O2 Czech\" OR Yettel OR \"PPF Telecom\"",
"maxItems": 100,
"queryType": "Latest"
}InPost take-private deal monitoring (with date + engagement filters):
{
"twitterContent": "InPost FedEx acquisition OR InPost takeover OR INPST",
"maxItems": 200,
"queryType": "Latest",
"since": "2026-01-01_00:00:00_UTC",
"min_faves": 5,
"filter:news": true
}InPost peers — logistics:
{
"twitterContent": "PostNL OR bpost OR \"DHL Group\" OR \"Austrian Post\"",
"maxItems": 100,
"queryType": "Latest"
}Allegro competitive intelligence:
{
"twitterContent": "Allegro Poland OR allegro.pl OR \"Allegro delivery\"",
"maxItems": 50,
"queryType": "Latest",
"lang": "pl"
}Telecom:
{
"twitterContent": "Yettel OR \"e& PPF Telecom\" OR \"CETIN Group\"",
"maxItems": 100,
"queryType": "Latest"
}MONETA / Air Bank Czech banking:
{
"twitterContent": "\"MONETA Money Bank\" OR \"Air Bank\" OR \"PPF banka\"",
"maxItems": 50,
"queryType": "Latest",
"lang": "cs"
}Heureka:
{
"searchQueries": ["Heureka shopping Czech"],
"maxItems": 20,
"tweetLanguage": "cs"
}SOTIO:
{
"searchQueries": ["SOTIO biotech OR SOTIO clinical trial"],
"maxItems": 20
}Škoda Group:
{
"searchQueries": ["Skoda Transportation OR Skoda Group tram"],
"maxItems": 20
}Home Credit:
{
"searchQueries": ["Home Credit Vietnam OR Home Credit Philippines"],
"maxItems": 20
}CME / Nova:
{
"searchQueries": ["TV Nova streaming OR Voyo Czech"],
"maxItems": 20,
"tweetLanguage": "cs"
}Gotchas & Limitations
- `maxItems` is REQUIRED — the actor will fail without it.
twitterContentis a single string — use Twitter operators (OR,-,from:,since:,until:) to combine.tweetIDsis plural (array) — nottweetId.searchTerms(array) also works — each term gets up tomaxItemsresults independently.langdefault is"en"— set explicitly or omit for all languages.since/untilformat isYYYY-MM-DD_HH:MM:SS_UTC— unusual format, not ISO 8601.- Pay-per-result: you only pay for tweets actually returned.
- Author info is included by default (full profile data).
---
3. Trustpilot — getwally.net/trustpilot-reviews-scraper
URL: https://apify.com/getwally.net/trustpilot-reviews-scraper Cost: $3.00 / 1,000 results Use case: Customer satisfaction for InPost, O2 CZ, Yettel, Heureka, Home Credit
Input Schema (verified from API — ONLY 2 fields!)
| Field | Type | Default | Required | Description |
|---|---|---|---|---|
startUrls | array of objects | [{"url":"https://www.trustpilot.com/review/postmarkapp.com"}] | Yes | Review page URLs. Format: [{"url": "https://www.trustpilot.com/review/domain.com"}] — array of objects with `url` key, not plain strings! |
limit | integer | 1000 | No | Maximum number of reviews to scrape. |
⚠️ CRITICAL: Only 2 input fields exist. The following fields from older documentation do NOT exist:
- ~~
maxItems~~ → uselimit - ~~
includeCompanyDetails~~ → does not exist - ~~
includeStatistics~~ → does not exist - ~~
onlyNewerThan~~ → does not exist - ~~
maxConcurrency~~ → does not exist - ~~
minConcurrency~~ → does not exist - ~~
maxRequestRetries~~ → does not exist - ~~
customMapFunction~~ → does not exist
Output Fields (per review)
{
"reviewId": "69afe529f0877de1c09ec06e",
"name": "Yeison Sierra",
"avatar": "https://user-images.trustpilot.com/.../73x73.png",
"date": "2026-03-10T11:32:25+00:00",
"reviewTitle": "Good system and very efficient",
"reviewText": "I like how the app and the system works...",
"ratingValue": "5",
"url": "https://trustpilot.com/reviews/69afe529f0877de1c09ec06e"
}Example Inputs
All consumer + peer companies (comprehensive):
{
"startUrls": [
{"url": "https://www.trustpilot.com/review/inpost.pl"},
{"url": "https://www.trustpilot.com/review/inpost.co.uk"},
{"url": "https://www.trustpilot.com/review/o2.cz"},
{"url": "https://www.trustpilot.com/review/yettel.hu"},
{"url": "https://www.trustpilot.com/review/yettel.bg"},
{"url": "https://www.trustpilot.com/review/yettel.rs"},
{"url": "https://www.trustpilot.com/review/heureka.cz"},
{"url": "https://www.trustpilot.com/review/airbank.cz"}
],
"limit": 50
}InPost vs logistics peers:
{
"startUrls": [
{"url": "https://www.trustpilot.com/review/inpost.pl"},
{"url": "https://www.trustpilot.com/review/postnl.nl"},
{"url": "https://www.trustpilot.com/review/bpost.be"},
{"url": "https://www.trustpilot.com/review/dhl.com"},
{"url": "https://www.trustpilot.com/review/post.at"},
{"url": "https://www.trustpilot.com/review/fedex.com"},
{"url": "https://www.trustpilot.com/review/ups.com"}
],
"limit": 50
}Telecom peer comparison:
{
"startUrls": [
{"url": "https://www.trustpilot.com/review/o2.cz"},
{"url": "https://www.trustpilot.com/review/yettel.hu"},
{"url": "https://www.trustpilot.com/review/telekom.de"},
{"url": "https://www.trustpilot.com/review/allegro.pl"}
],
"limit": 50
}DHL multi-market:
{
"startUrls": [
{"url": "https://www.trustpilot.com/review/dhl.com"},
{"url": "https://www.trustpilot.com/review/dhl.de"},
{"url": "https://www.trustpilot.com/review/dhl.nl"}
],
"limit": 50
}Portfolio — consumer leisure brands:
Dream Yacht Charter:
{
"startUrls": [{"url": "https://www.trustpilot.com/review/dreamyachtcharter.com"}],
"limit": 30
}Leopard Catamarans: ❌ No Trustpilot profile exists — 0 reviews returned. Do not use.
Known Trustpilot URLs for Portfolio Companies
| Company | Trustpilot URL | Status |
|---|---|---|
| InPost PL | trustpilot.com/review/inpost.pl | ✅ |
| InPost UK | trustpilot.com/review/inpost.co.uk | ✅ |
| O2 CZ | trustpilot.com/review/o2.cz | ✅ |
| Yettel HU | trustpilot.com/review/yettel.hu | ✅ |
| Yettel BG | trustpilot.com/review/yettel.bg | ✅ |
| Yettel RS | trustpilot.com/review/yettel.rs | ✅ |
| Heureka CZ | trustpilot.com/review/heureka.cz | ✅ |
| Air Bank | trustpilot.com/review/airbank.cz | ✅ (flaky) |
| PostNL NL | trustpilot.com/review/postnl.nl | ✅ |
| PostNL BE | trustpilot.com/review/postnl.be | ✅ |
| bpost | trustpilot.com/review/bpost.be | ✅ |
| DHL global | trustpilot.com/review/dhl.com | ✅ |
| DHL DE | trustpilot.com/review/dhl.de | ✅ |
| DHL NL | trustpilot.com/review/dhl.nl | ✅ |
| Österr. Post | trustpilot.com/review/post.at | ✅ |
| Allegro | trustpilot.com/review/allegro.pl | ✅ |
| Deutsche Telekom | trustpilot.com/review/telekom.de | ✅ |
| FedEx | trustpilot.com/review/fedex.com | ✅ |
| UPS | trustpilot.com/review/ups.com | ✅ |
| Home Credit CZ | — | ❌ no page |
| MONETA | — | ❌ no page |
| CETIN | — | ❌ no page (B2B) |
| PPF Group | — | ❌ no page (holding) |
| SOTIO | — | ❌ no page (biotech) |
| Dream Yacht Charter | trustpilot.com/review/dreamyachtcharter.com | ✅ |
| Leopard Catamarans | — | ❌ no profile (0 reviews) |
Gotchas & Limitations
- `startUrls` is array of OBJECTS — each item must be
{"url": "..."}, NOT a plain string. - Only `limit` controls max reviews — no
maxItems, noonlyNewerThan, noincludeCompanyDetails. - No date filtering available — the actor returns most recent reviews first, up to
limit. - No company details or statistics extraction — only individual reviews are returned.
ratingValueis a string ("1" through "5"), not integer — parse before aggregating.limitdefault is 1000 — set lower to control costs ($3/1K results).
---
4. Economic Calendar — pintostudio/economic-calendar-data-investing-com
URL: https://apify.com/pintostudio/economic-calendar-data-investing-com Cost: $10.00 / 1,000 results Use case: Economic calendar events for CZ, PL, HU, EU — central bank rate decisions, GDP releases, CPI data
Input Schema (verified from API)
| Field | Type | Default | Required | Description |
|---|---|---|---|---|
country | string (enum) | "" | No (not required) | Country name (lowercase). See full enum below. Empty = all countries. |
importances | string (enum) | "" | No | Single value only. Values: "high", "medium", "low", "" (all). Cannot combine multiple! |
timeZone | string | — | No | Format: "GMT +X:00" or "GMT -X:00". E.g., "GMT +1:00" for CET. |
timeFilter | string (enum) | "time_only" | No | Note: `timeFilter`, NOT `timeFormat`. Values: "time_only", "time_remain" |
categories | string | "" | No | Event category filter. Empty = all categories. |
fromDate | string | today | No | Start date. Format: "YYYY-MM-DD". Defaults to today. |
toDate | string | today | No | End date. Format: "YYYY-MM-DD". |
Country enum (47 countries — NO "euro zone"):
spain, united states, united kingdom, germany, france, italy, netherlands,
belgium, portugal, austria, switzerland, norway, sweden, denmark, finland,
poland, czech republic, hungary, greece, turkey, russia, china, japan,
south korea, india, australia, canada, brazil, mexico, argentina, chile,
colombia, peru, south africa, israel, saudi arabia, united arab emirates,
malaysia, singapore, thailand, indonesia, philippines, vietnam, taiwan,
hong kong, new zealand⚠️ "euro zone" is NOT in the enum. For ECB/Eurozone events, use "germany" (ECB events appear under Germany) or leave country empty and filter results.
⚠️ `importances` is a single enum value, not a comma-separated list. To get both high and medium, run two separate calls or leave empty for all.
Output Fields (per event)
{
"id": "541956",
"date": "02/03/2026",
"time": "08:30",
"zone": "czech republic",
"currency": "CZK",
"importance": "low",
"event": "S&P Global Czech Republic Manufacturing PMI (Feb)",
"actual": "50.0",
"forecast": "50.4",
"previous": "49.8"
}Example Inputs
Czech Republic — high-importance events (CNB rate decisions, GDP, CPI):
{
"country": "czech republic",
"importances": "high",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-04-30"
}Poland — all events (InPost, Allegro context):
{
"country": "poland",
"importances": "",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}Hungary — monetary policy (Yettel HU context):
{
"country": "hungary",
"importances": "high",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-06-30"
}Germany — includes ECB events (closest proxy for "euro zone"):
{
"country": "germany",
"importances": "high",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-06-30"
}Netherlands — HQ jurisdiction:
{
"country": "netherlands",
"importances": "",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}All countries, high importance only:
{
"country": "",
"importances": "high",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}Turkey (TEMSA territory):
{
"country": "turkey",
"importances": "high",
"timeZone": "GMT +3:00",
"timeFilter": "time_only",
"fromDate": "2026-03-01",
"toDate": "2026-06-30"
}Vietnam (Home Credit territory):
{
"country": "vietnam",
"importances": "",
"timeZone": "GMT +7:00",
"timeFilter": "time_only",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}United States (SOTIO, PPF Real Estate, FedEx/UPS):
{
"country": "united states",
"importances": "high",
"timeZone": "GMT -5:00",
"timeFilter": "time_only",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}Multi-country batch workflow (run each as separate actor call):
countries = [
"czech republic", "poland", "hungary", "germany", "netherlands",
"united kingdom", "austria", "turkey", "vietnam", "united states"
]
for country in countries:
input_json = {
"country": country,
"importances": "high",
"timeZone": "GMT +1:00",
"fromDate": "2026-03-01",
"toDate": "2026-03-31"
}
# call-actor with input_jsonTested Countries (confirmed working)
| Country | Currency | Key Events |
|---|---|---|
| czech republic | CZK | CNB rate decision, GDP, CPI, PMI, unemployment |
| poland | PLN | NBP rate decision, GDP, CPI, PMI |
| hungary | HUF | MNB rate decision, GDP, CPI |
| germany | EUR | GDP, PMI, ZEW, Ifo, unemployment, ECB events |
| netherlands | EUR | GDP, CPI, consumer confidence |
| united kingdom | GBP | BoE rate decision, GDP, CPI |
| austria | EUR | GDP, CPI, PMI |
| turkey | TRY | CBRT rate decisions, GDP, CPI, unemployment |
| vietnam | VND | GDP, CPI, trade balance, FDI |
| united states | USD | Fed rate decisions, GDP, CPI, NFP, PMI |
Gotchas & Limitations
- One country per call — or leave empty for all countries.
- `importances` is SINGLE value —
"high","medium","low", or""(all). Cannot combine"high,medium". - Field name is `timeFilter` — NOT
timeFormat. - No "euro zone" in country enum — use
"germany"or empty + post-filter. - No proxy support —
additionalProperties: falsein schema. - Missing countries: Bulgaria, Serbia, Slovakia are NOT in the API's country enum. These operating territories cannot be monitored via this actor.
- Date format: input is
"YYYY-MM-DD", output is"DD/MM/YYYY". - Cost: $10/1K results. A month × one country ≈ 50-150 events ≈ $0.50-$1.50.
- If no dates provided, returns events for current day only.
---
Quick Reference: Parameter Names (API-verified)
| Actor | Old/wrong name | Correct API name | Notes |
|---|---|---|---|
includeNSFW | includeNsfw | Lowercase "sfw" | |
maxPosts default 100 | default 50000 | Always set explicitly! | |
subredditKeywords string | array of string | Changed type | |
fastMode, proxy | do not exist | Removed from schema | |
| sort: "rising", "best" | not valid | Only: relevance, hot, top, new, comments | |
tweetId | tweetIDs | Plural, array | |
maxItems optional | required | Actor fails without it | |
customMapFunction | does not exist | Removed from schema | |
| Trustpilot | maxItems | limit | Different name, default 1000 |
| Trustpilot | startUrls string[] | object[] [{"url":"..."}] | Array of objects! |
| Trustpilot | includeCompanyDetails | does not exist | Only 2 fields total |
| Trustpilot | includeStatistics | does not exist | Only 2 fields total |
| Trustpilot | onlyNewerThan | does not exist | No date filtering |
| Econ Cal | timeFormat | timeFilter | Wrong name in old docs |
| Econ Cal | "euro zone" | not in enum | Use "germany" or empty |
| Econ Cal | importances: "high,medium" | single value only | Cannot combine |
---
CLI Examples (call-actor via MCP)
Reddit — portfolio + peers
# Core portfolio
mcpc @apify tools-call call-actor \
actor:="fatihtahta/reddit-scraper-search-fast" \
input:='{"queries":["InPost parcel locker","O2 Czech Republic","PPF Group","MONETA Money Bank Czech","Air Bank Czech","Yettel Hungary mobile"],"maxPosts":30,"sort":"relevance","timeframe":"month","scrapeComments":true,"maxComments":5}'
# InPost logistics peers
mcpc @apify tools-call call-actor \
actor:="fatihtahta/reddit-scraper-search-fast" \
input:='{"queries":["PostNL delivery","bpost Belgium","DHL parcel","Austrian Post delivery"],"maxPosts":30,"sort":"relevance","timeframe":"year","scrapeComments":true,"maxComments":5}'
# Allegro competitive intelligence
mcpc @apify tools-call call-actor \
actor:="fatihtahta/reddit-scraper-search-fast" \
input:='{"queries":["Allegro Poland shopping","Allegro delivery","Allegro vs InPost"],"maxPosts":30,"sort":"relevance","timeframe":"year"}'Twitter — InPost + peers + telecom + banking
# InPost take-private monitoring
mcpc @apify tools-call call-actor \
actor:="kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest" \
input:='{"twitterContent":"InPost OR INPST OR \"PPF Group\" OR \"InPost FedEx\"","maxItems":100,"queryType":"Latest"}'
# Logistics peers
mcpc @apify tools-call call-actor \
actor:="kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest" \
input:='{"twitterContent":"PostNL OR bpost OR \"DHL Group\" OR \"Austrian Post\"","maxItems":100,"queryType":"Latest"}'
# Telecom
mcpc @apify tools-call call-actor \
actor:="kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest" \
input:='{"twitterContent":"Yettel OR \"e& PPF Telecom\" OR \"CETIN Group\"","maxItems":100,"queryType":"Latest"}'
# Czech banking
mcpc @apify tools-call call-actor \
actor:="kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest" \
input:='{"twitterContent":"\"MONETA Money Bank\" OR \"Air Bank\" OR \"PPF banka\"","maxItems":50,"queryType":"Latest","lang":"cs"}'Trustpilot — consumer brands + logistics peers
# All consumer brands
mcpc @apify tools-call call-actor \
actor:="getwally.net/trustpilot-reviews-scraper" \
input:='{"startUrls":[{"url":"https://www.trustpilot.com/review/inpost.pl"},{"url":"https://www.trustpilot.com/review/inpost.co.uk"},{"url":"https://www.trustpilot.com/review/o2.cz"},{"url":"https://www.trustpilot.com/review/yettel.hu"},{"url":"https://www.trustpilot.com/review/yettel.bg"},{"url":"https://www.trustpilot.com/review/yettel.rs"},{"url":"https://www.trustpilot.com/review/heureka.cz"},{"url":"https://www.trustpilot.com/review/airbank.cz"}],"limit":50}'
# InPost vs logistics peers
mcpc @apify tools-call call-actor \
actor:="getwally.net/trustpilot-reviews-scraper" \
input:='{"startUrls":[{"url":"https://www.trustpilot.com/review/inpost.pl"},{"url":"https://www.trustpilot.com/review/postnl.nl"},{"url":"https://www.trustpilot.com/review/bpost.be"},{"url":"https://www.trustpilot.com/review/dhl.com"},{"url":"https://www.trustpilot.com/review/post.at"},{"url":"https://www.trustpilot.com/review/fedex.com"},{"url":"https://www.trustpilot.com/review/ups.com"}],"limit":50}'Economic calendar — all territories
# Czech Republic
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"czech republic","importances":"high","timeZone":"GMT +1:00","fromDate":"2026-03-01","toDate":"2026-04-30"}'
# Poland
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"poland","importances":"high","timeZone":"GMT +1:00","fromDate":"2026-03-01","toDate":"2026-04-30"}'
# Hungary
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"hungary","importances":"high","timeZone":"GMT +1:00","fromDate":"2026-03-01","toDate":"2026-06-30"}'
# Turkey (TEMSA)
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"turkey","importances":"high","timeZone":"GMT +3:00","fromDate":"2026-03-01","toDate":"2026-06-30"}'
# Vietnam (Home Credit)
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"vietnam","importances":"","timeZone":"GMT +7:00","fromDate":"2026-03-01","toDate":"2026-03-31"}'
# United States (SOTIO, Real Estate)
mcpc @apify tools-call call-actor \
actor:="pintostudio/economic-calendar-data-investing-com" \
input:='{"country":"united states","importances":"high","timeZone":"GMT -5:00","fromDate":"2026-03-01","toDate":"2026-03-31"}'Related skills
FAQ
Which Apify Actors does this skill use?
Only three: fatihtahta/reddit-scraper-search-fast, kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest, and getwally.net/trustpilot-reviews-scraper. It does not use any other actor.
Does it need an Apify account?
Yes. It requires Apify access via the apify CLI (apify login) or the Apify MCP connector's call-actor tool.