πŸ”Ž X (Twitter) Brand Mention & Keyword Monitor avatar

πŸ”Ž X (Twitter) Brand Mention & Keyword Monitor

Pricing

Pay per usage

Go to Apify Store
πŸ”Ž X (Twitter) Brand Mention & Keyword Monitor

πŸ”Ž X (Twitter) Brand Mention & Keyword Monitor

Monitor X (Twitter) brand mentions, handles, hashtags, phrases, and keywords from a signed-in session. Export strict visible matches or only new deduplicated events through a persistent checkpoint. Requires ct0 and auth_token cookies; no paid X API.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

KazKN

KazKN

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Monitor brand mentions, handles, hashtags, phrases, or keywords on X (Twitter) from a signed-in session. Choose a recent snapshot or a persistent feed of new, deduplicated eventsβ€”without a paid X API subscription.

Turn authenticated X search into a clean feed of new brand mentions with stable IDs and visible match evidence in strict mode

Concrete outcome: a bounded snapshot or a persistent feed of new matching posts. Stable mentionId values make every delivered row safe to upsert; each row also includes the exact query, the returned matchedText, the post URL, and timestamps for downstream alerts. Visible match evidence is guaranteed only in strict mode; X search semantics mode preserves X's own candidate decision.

Before you start: a live run requires the ct0 and auth_token cookies from an X account that can use search. The step-by-step instructions below show where to find them and exactly what to paste.

Your intentOutcome presetConcrete result
Review recent matching posts without changing a checkpointsnapshotUp to the run limit from the selected lookback; oldest first within each query; query groups follow the input order
Continue one monitor and receive only unseen matching postsdeltaStable NEW records after the saved checkpoint; the first successful run returns the current lookback and creates that checkpoint

⚑ Quick start β€” after your cookies are ready

Pricing activation: the new pay-per-event plan is scheduled for August 24, 2026 at 00:15 UTC. Before it becomes the current plan, a live run can stop safely with PPE_REQUIRED_FOR_LIVE_MODE. Check the Actor's live Pricing tab before running.

  1. Sign in to x.com with a dedicated secondary account.

  2. Retrieve its ct0 and auth_token cookie values using the detailed instructions in πŸ” Connect your X session below.

  3. Paste this exact one-line format into πŸ” X session cookies:

    ct0=PASTE_CT0_VALUE; auth_token=PASTE_AUTH_TOKEN_VALUE
  4. Choose ⚑ New mentions only for recurring monitoring, or πŸ“Έ Recent snapshot for a one-off export.

  5. Replace @YourBrand in πŸ”Ž Brands or searches. Add up to 25 searches.

  6. Keep βœ… Strict visible match unless you deliberately need X search operators such as OR, from:, lang:, or filter:.

  7. Give the monitor a stable name such as yourbrand-en. Reuse that exact name for later delta runs.

  8. Choose the first-run lookback in hours or days, set the maximum number of mentions, and click Start.

  9. Open the run's Dataset tab to inspect, download, or integrate the returned records.

Copy to your AI assistant

Actor reference: kazkn/x-mentions-delta-monitor.

Load both secrets from protected environment variables. Never paste or share the real token or X cookies in an AI prompt, chat, source file, screenshot, README, or support message.

: "${APIFY_TOKEN:?Set APIFY_TOKEN in your shell environment}"
: "${X_SESSION_COOKIES:?Set X_SESSION_COOKIES in your shell environment}"
test -n "${X_SESSION_COOKIES}"
export APIFY_TOKEN X_SESSION_COOKIES
RUN_RESPONSE="$(
curl -fsS --request POST \
"https://api.apify.com/v2/acts/kazkn~x-mentions-delta-monitor/runs?waitForFinish=120" \
--header "Authorization: Bearer ${APIFY_TOKEN}" \
--header "Content-Type: application/json" \
--data "$(jq -nc '{
preset: "delta",
queries: ["@YourBrand"],
matchMode: "strict",
xSessionCookies: env.X_SESSION_COOKIES,
monitorId: "yourbrand-en",
maxResults: 100,
lookbackValue: 7,
lookbackUnit: "days"
}')"
)"
RUN_ID="$(jq -r '.data.id' <<<"${RUN_RESPONSE}")"
DATASET_ID="$(jq -r '.data.defaultDatasetId' <<<"${RUN_RESPONSE}")"
test -n "${RUN_ID}" && test -n "${DATASET_ID}"
curl -fsS \
"https://api.apify.com/v2/datasets/${DATASET_ID}/items?clean=true&format=json" \
--header "Authorization: Bearer ${APIFY_TOKEN}"

The assistant can change the non-secret searches, monitor name, lookback, or result limit. Keep APIFY_TOKEN and X_SESSION_COOKIES outside the prompt and inject them only from your local environment or secret manager.

🎁 What you get

  • A flat Dataset row for every accepted query/post combination.
  • Stable IDs suitable for database upserts and downstream deduplication.
  • Visible match evidence in strict mode: where the term matched and the relevant text.
  • A persistent named checkpoint for recurring delta runs.
  • Explicit failures for expired cookies, rate limits, timeouts, invalid responses, or an oversized unseen backlog.
  • JSON, CSV, Excel, XML, RSS, and JSONL exports through Apify Dataset tools.

This Actor does not provide sentiment analysis, engagement metrics, profiles, media downloads, complete X history, guaranteed completeness, or guaranteed delivery latency. Results are limited to posts returned by authenticated X search and visible to the connected account.

πŸ” Connect your X session

What these cookies are

After you sign in to X, the browser stores session cookies. This Actor needs two of them:

  • auth_token identifies the signed-in X session.
  • ct0 is the CSRF value used with that session.

They are not your X password, an X API key, a Bearer Token, or your Apify API token. Treat both values like a password: anyone who obtains a valid session cookie may be able to use that session.

Use a dedicated secondary X account with only the access needed for monitoring. The account determines what search can return. Sessions can expire or be revoked, and X may rate-limit or restrict automated sessions.

Chrome or Microsoft Edge

  1. Open https://x.com/ in the desktop browser and confirm that you are signed in to the intended account. If X shows Log in, log in before continuing.
  2. Open Developer Tools:
    • Windows or Linux: press F12 or Ctrl+Shift+I.
    • macOS: press Option+Command+I.
  3. Select the Application tab. If it is hidden, click the Β» overflow button and choose Application.
  4. In the left sidebar, open Application β†’ Storage β†’ Cookies.
  5. Select https://x.com. A table of cookies appears.
  6. Use the filter box to search for ct0.
  7. Find the row whose Name is exactly ct0. Double-click its Value cell and copy the complete value. Copy the value onlyβ€”not the domain, path, expiry date, or the word ct0.
  8. Search for auth_token. Find the exact row and copy its complete Value cell.
  9. Keep Developer Tools private. Do not include either value in a screenshot, support message, source file, or log.

Firefox

  1. Sign in at https://x.com/ in Firefox.
  2. Open Developer Tools with F12, Ctrl+Shift+I on Windows/Linux, or Option+Command+I on macOS.
  3. Select Storage. If it is hidden, open the Β» overflow menu.
  4. In the left sidebar, expand Cookies and select https://x.com.
  5. Locate the rows named exactly ct0 and auth_token.
  6. For each row, copy only the complete value from the Value column.

Safari on macOS

  1. In Safari, open Safari β†’ Settings β†’ Advanced and enable the option that shows features for web developers if the Develop menu is not already visible.
  2. Sign in at https://x.com/.
  3. Open Develop β†’ Show Web Inspector.
  4. Select the Storage tab, then Cookies, then the x.com entry.
  5. Locate ct0 and auth_token and copy only their complete Value cells.

Browser labels can move between versions. The goal is always the cookie table for the signed-in x.com page, not the browser's general Privacy or Clear browsing data screen.

Exactly what to paste

Paste the two names and their copied values into the single πŸ” X session cookies field, on one line, separated by a semicolon and a space:

ct0=PASTE_CT0_VALUE; auth_token=PASTE_AUTH_TOKEN_VALUE

Replace PASTE_CT0_VALUE and PASTE_AUTH_TOKEN_VALUE; do not type the placeholder text literally. A correctly shaped example looks like this, but these fake values will not work:

ct0=abc123example; auth_token=def456example

Do not paste:

  • JSON, a browser cookie export, or an array of cookie objects.
  • A leading Cookie: label or request headers.
  • Quotes, braces, line breaks, or Markdown backticks.
  • Attributes such as Domain, Path, Expires, HttpOnly, Secure, SameSite, or Size.
  • Your email, username, password, X Bearer Token, X API key, or Apify token.

Extra cookies are unnecessary. Even if your browser shows dozens of rows, copy only ct0 and auth_token. The field is a masked Apify secret input, so Apify encrypts it before persistence and decrypts it only for the Actor run. You must still keep the cookies private.

If you accidentally disclose them, sign out that X session or revoke it under X Settings and privacy β†’ Security and account access β†’ Apps and sessions β†’ Sessions, then sign in again and copy fresh values. If a run reports that the session is invalid or expired, repeat the sign-in and copy steps before retrying.

🎯 Input reference

Input fieldWhat to enterDefault and limitsExample
🎯 Monitoring resultRecent snapshot for a one-off lookback, or New mentions only for a persistent feedDefault: New mentions onlyNew mentions only
πŸ”Ž Brands or searchesHandles, brand names, hashtags, phrases, or advanced X search queries1–25 searches; each up to 512 characters; strict mode allows at most 32 positive terms and 256 positive-term characters; duplicates ignoring case are rejected@Vinted, Vinted, #Vinted
βœ… Match precisionStrict visible proof or full X search semanticsDefault: Strict visible matchStrict visible match
πŸ” X session cookiesThe two cookie values in the exact one-line format documented aboveRequired for live runs; maximum 16,384 charactersct0=VALUE; auth_token=VALUE
πŸ—‚ Monitor nameA stable checkpoint name; reuse it only for runs that belong to the same feed1–64 ASCII letters, numbers, spaces, _, or -; must start with a letter or numbervinted-en
πŸ“¦ Maximum mentionsMaximum Dataset records across every search in this runβ€”not per search1–1,000; default 100100
πŸ•’ First-run lookbackNumber used for the first delta run or any snapshot1–168 hours or 1–7 days; default 77
⏱ Lookback unitHours for a short window or days for an easier multi-day windowHours or Days; default DaysDays

Programmatic inputs created before the hours/days selector may still use the legacy lookbackHours field. New integrations should use lookbackValue plus lookbackUnit. If both new lookback fields are omitted through the API, the compatibility default is 24 hours.

The unit changes the valid range: values from 8 through 168 are hours-only. When Days is selected, enter a value from 1 through 7; the Actor rejects a larger value with INPUT_LOOKBACK_INVALID.

πŸ”Ž Build useful searches

Start with simple searches in strict mode:

{
"queries": ["@YourBrand", "Your Brand", "#YourBrand"]
}

Useful query types include:

  • Handle mention: @YourBrand
  • Brand or product keyword: Vinted
  • Hashtag: #Vinted
  • Phrase sent to X search: "second hand fashion"
  • Exclusion: Vinted -jobs
  • Language or author filter: Vinted lang:en or from:username
  • Alternatives: Vinted OR Depop

X can change search behavior, and search operators do not guarantee a result. Test a new query directly on X first. For advanced operators, select 🧩 X search semantics so the Actor does not reinterpret X's decision locally.

βœ… Strict visible match versus 🧩 X search semantics

ModeAcceptance ruleBest forImportant limitation
Strict visible matchEvery positive search term must be visible in one checked context: post text, quoted-post text, reposted-post text, or the queried author's username for a pure @handle searchBrand monitoring where every row needs human-readable evidenceOperators and negative terms are ignored during local evidence checking; an OR query can therefore be too restrictive
X search semanticsKeeps candidates returned by X for the complete queryOR, from:, lang:, filter:, exclusions, and other advanced syntaxmatchedIn is x_search_context; this proves X returned the candidate, not which visible term caused the match

For the cleanest brand-mention Dataset, use one simple brand, handle, or hashtag per search with strict mode. Use X search semantics only when preserving X's own advanced query evaluation matters more than local visible-term proof.

🧭 How a run works

  1. The Actor validates the input, normalizes searches, and rejects case-insensitive duplicates.
  2. It parses the secret field and forwards only ct0 and auth_token to the X search client.
  3. It converts the chosen lookback to a start time and searches each query through the authenticated session.
  4. In strict mode, it removes candidates without visible evidence. In X search semantics mode, it preserves X's returned candidates.
  5. It normalizes fields and creates mentionId from the X post ID plus the normalized query.
  6. It deduplicates records and applies the global result limit. Results are oldest first within each query; query groups follow the input order.
  7. It writes records to the run's Dataset.
  8. For a successful delta run, it advances the named checkpoint only after Dataset storage succeeds.

If the same post matches two different queries, the Actor can emit two records because the query is part of mentionId. This keeps attribution to each monitor search explicit.

πŸ—‚ Snapshots, delta monitoring, and schedules

Recent snapshot

A snapshot searches the selected lookback but does not use or advance a checkpoint. It is useful for testing queries, collecting a recent sample, or making a one-off export. When more valid candidates exist than the result limit, the Dataset contains only the bounded result set and the run log records the truncation diagnostic.

New mentions only

The first successful delta run for a monitor name searches the selected lookback, emits its accepted records, and saves a persistent checkpoint. Later successful runs with the same normalized monitor name request newer posts and suppress stable mention IDs already recorded.

The Actor fails with X_SEARCH_BACKLOG_LIMIT instead of advancing the checkpoint when an unseen backlog exceeds the bounded 1,000-post scan. This protects the feed from silently jumping past unprocessed posts.

Scheduling safely

Use an Apify schedule to run the delta preset repeatedly. Pick an interval that normally keeps the unseen volume below the scan bound. The Actor permits only one active run per monitor name; an overlapping run stops with MONITOR_ALREADY_RUNNING before it searches or bills mention rows. A crash between Dataset delivery and checkpoint storage can still replay a row because those operations are not one transaction. Downstream consumers should always upsert or deduplicate on mentionId.

Use a different monitor name when you need an independent checkpointβ€”for example, brand-en, brand-fr, and competitors.

πŸ“¦ Dataset output

Every row has the same flat structure:

{
"eventType": "NEW",
"mentionId": "ea52f50b...",
"tweetId": "1820000000000000000",
"query": "@YourBrand",
"text": "Trying @YourBrand today.",
"matchedIn": "post_text",
"matchedText": "Trying @YourBrand today.",
"authorUsername": "example_user",
"createdAt": "2026-08-06T09:00:00.000Z",
"url": "https://x.com/example_user/status/1820000000000000000",
"collectedAt": "2026-08-06T10:00:00.000Z"
}
FieldMeaning
eventTypeAlways NEW; in a snapshot it means a normalized event returned by that run, not a persistent delta claim
mentionIdSHA-256 identity derived from the X post ID and normalized query; use as the idempotency key
tweetIdOriginal X post ID
queryNormalized search that produced this record
textPost text returned by X search
matchedInpost_text, quoted_post_text, retweeted_post_text, author_username, or x_search_context
matchedTextVisible evidence used by strict mode, or the returned post text in X search semantics mode
authorUsernameAuthor username when X returns it; otherwise null
createdAtPublication timestamp returned by X
urlDirect x.com post URL
collectedAtTimestamp of this monitoring cycle

The Dataset belongs to the run, and its retention follows your current Apify plan and storage settings. Export important records or use an appropriately configured named storage when you need a longer retention period. The named checkpoint is separate from the Dataset.

πŸ”Œ API, exports, webhooks, and integrations

Start a run through the API

Use the complete command in Copy to your AI assistant above. It calls the exact Actor reference, keeps both secrets in environment variables, waits for the run, captures its Dataset ID, and downloads the results. For production automation, inject secrets from a protected secret manager or a private Apify Task rather than typing their values into a shared terminal.

Download Dataset items

Copy the Dataset ID from the run and request a supported format such as json, csv, xlsx, xml, rss, or jsonl:

curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?format=json&clean=true" \
--header "Authorization: Bearer ${APIFY_TOKEN}"

You can also use the Dataset tab's Export results button without writing code.

Trigger downstream workflows

Configure an Apify webhook for successful Actor runs, then let the receiving service fetch the Dataset items. Make, Zapier, n8n, Google Sheets, databases, and custom APIs should deduplicate on mentionId. A successful run can legitimately contain zero rows when authenticated X search returns no candidate for the query and lookback.

πŸ’³ Pricing and subscription discounts

This Actor uses pay per event pricing with three simple units: the run start, each configured search that completes successfully, and each accepted query/post match row written to the Dataset. A successful search check is billable even when it finds zero accepted mentions because the Actor still authenticated, searched X, and verified the monitoring window. The Actor submits the search-check count only after every executed search and all returned records pass validation. If any executed search fails authentication, network, timeout, upstream processing, or response validation, the cycle submits no search-check events.

Platform usage is included in the event prices: no separate platform-usage line is added to your event bill, and the creator covers those platform costs from the event revenue. Reading, exporting, or retaining Dataset data after the run can still consume the normal storage and transfer usage of your Apify account. The plan below is scheduled to start on August 24, 2026 at 00:15 UTC; before that time, the current price can differ. The Actor's live Pricing tab is always the final source of truth.

Apify planPricing tierRun startSuccessful search checkedNew mention deliveredDiscount vs Free
FreeFREE$0.000500$0.005000$2.50 / 1,000β€”
StarterBRONZE$0.000450$0.004500$2.25 / 1,00010%
ScaleSILVER$0.000400$0.004000$2.00 / 1,00020%
BusinessGOLD$0.000325$0.003250$1.625 / 1,00035%
Enterprise PlatinumPLATINUM$0.000250$0.002500$1.25 / 1,00050%
Enterprise DiamondDIAMOND$0.000200$0.002000$1.00 / 1,00060%

What is charged?

  • Monitor run started β€” one automatic start event at the price for your Apify tier. With the Actor's fixed 256 MB memory allocation, one run creates one start event.
  • Successful search checked β€” one charge after each configured X search completes successfully. A legitimate zero-result search is charged; a search that fails before completion is not.
  • New mention delivered β€” one charge per Dataset row. The billable unit is one accepted query/post pair, so one X post matching two configured searches can create two rows and two charges.
  • No separate platform-usage surcharge β€” the user does not receive a second run-compute line; the creator covers those platform costs, while Dataset storage and transfer remain normal usage on the user's Apify account.
  • No charge for suppressed duplicates β€” a delta run that finds only IDs already checkpointed produces no new mention event. In the rare crash window after Dataset delivery but before checkpoint storage, a replayed row can be charged again; its stable mentionId makes the replay detectable.
  • No $0.01 minimum invoice β€” $0.01 is only the lowest maximum-charge limit a user can select for a run.

Cost examples

The exact formula is run start + successful searches + delivered query/post rows. These examples assume one run:

ScenarioFreeStarterScaleBusinessPlatinumDiamond
1 search, 0 mentions$0.005500$0.004950$0.004400$0.003575$0.002750$0.002200
1 search, 10 mentions$0.030500$0.027450$0.024400$0.019825$0.015250$0.012200
1 search, 100 mentions$0.255500$0.229950$0.204400$0.166075$0.127750$0.102200
25 searches, 0 mentions$0.125500$0.112950$0.100400$0.081575$0.062750$0.050200

For one quiet search with no new mention on the Free tier, one daily run for 30 days costs about $0.165; one hourly run for 30 days costs about $3.96. Delivered mentions are then added at the price for your Apify tier.

Before starting a broad monitor, set Maximum charge per run in Apify Console. The Actor first limits the number of searches to the available search-check budget. After those checks are charged, it limits Dataset delivery to the remaining mention budget and does not advance the delta checkpoint past rows that could not be delivered.

πŸ›  Troubleshooting

Symptom or errorWhat it meansWhat to do
X_SESSION_COOKIES_REQUIREDThe secret field is empty for a live runRetrieve both cookies and paste the exact one-line format
X_SESSION_COOKIES_INVALID or INPUT_X_SESSION_COOKIES_INVALIDA value is missing, empty, duplicated, multiline, or malformedRemove JSON, labels, attributes, quotes, and line breaks; paste only ct0=VALUE; auth_token=VALUE
X_SESSION_INVALID_OR_EXPIREDX rejected the session or it expiredSign in again in the browser and copy fresh values for both cookies
X_SESSION_COOKIES_REJECTEDThe search client rejected the supplied cookie pairConfirm the values came from the same currently signed-in x.com session
X_SESSION_VALIDATION_FAILEDX returned no usable result for both the requested search and the control validation searchConfirm search works manually in that account, refresh the cookies, then retry
X_SEARCH_RATE_LIMITEDX rate-limited the sessionStop retrying immediately, wait, and reduce run frequency or query volume
X_SEARCH_TIMEOUTAuthenticated search did not finish before the Actor deadlineRetry later with fewer searches; repeated failures can indicate an upstream change
X_SEARCH_AUTH_OR_UPSTREAM_FAILEDAuthentication failed or X changed/responded unexpectedlyRefresh the session; if the problem persists, include the safe error code and run ID in supportβ€”not the cookies
X_SEARCH_RESPONSE_INVALIDX returned a response the Actor could not validateRetry once later and report the run ID if it persists
X_SEARCH_BACKLOG_LIMITA delta feed has more than 1,000 unseen posts in the bounded scanRun more frequently or split high-volume queries into separate monitor names; the checkpoint is not advanced
MONITOR_ALREADY_RUNNINGAnother run currently owns the same monitor-name lockLet that run finish; do not retry concurrently
INPUT_LOOKBACK_INVALID or legacy INPUT_LOOKBACK_HOURS_INVALIDThe lookback is outside 1–168 hours or 1–7 daysReduce the number or switch the unit; values from 8 through 168 are hours-only
PPE_EVENT_NOT_CONFIGURED, PPE_EVENT_SET_MISMATCH, PPE_DOUBLE_CHARGE_CONFIGURATION, or PPE_REQUIRED_FOR_LIVE_MODEThe live Pricing event set is missing, inactive, or does not exactly match the Actor's billing contractStop the schedule and contact support with the run ID; no live mention search was started
INPUT_QUERY_COMPLEXITY_INVALIDA strict-mode query contains too many positive terms for bounded local evidence matchingSimplify the query, split it into separate searches, or use X search semantics for advanced operators
Run succeeds with zero rowsNo accepted candidate was returned inside the lookback, or strict mode removed candidates without visible proofTest the query on X, widen the lookback, try one simple query, then compare strict mode with X search semantics
Unrelated-looking rows in X search semantics modeXβ€”not the Actor's strict verifierβ€”accepted the candidateSwitch to strict mode or simplify the query if every row must contain visible evidence
Duplicate delivery downstreamA failure between Dataset and checkpoint writes replayed a recordDeduplicate or upsert on mentionId

Never send cookies in a support request. Share only the Apify run ID, safe error code, non-secret input fields, and whether manual X search worked in the same account.

❓ Frequently asked questions

Do I need the paid X API?

No paid X API is required. The Actor uses authenticated X search with the session cookies you provide.

Do I enter my X password in the authentication field?

No. Enter only ct0=VALUE; auth_token=VALUE in πŸ” X session cookies. Never enter a password, email address, API key, or Bearer Token.

The Actor validates one cookie header-shaped string and extracts the two required names. Both values must come from the same active browser session.

Why did the first delta run return older posts?

It must initialize the monitor from the selected lookback. Later successful runs with the same monitor name return only records beyond the saved checkpoint and suppress previously stored mention IDs.

Does changing the monitor name reset the feed?

Yes. Each normalized monitor name has its own checkpoint. Changing it starts an independent feed from the selected lookback.

Can I monitor several brands in one run?

Yes, up to 25 searches. The maximum-mentions limit is global across the run, so a high-volume early search can consume much of the limit. Separate important feeds when you need independent capacity and checkpoints.

Why can the same X post appear more than once?

If it matches different searches, each query/post pair receives its own mentionId. If the IDs are identical, treat the later row as a replay and deduplicate it.

Can the Actor read protected posts?

It can only receive what authenticated X search returns to the connected account. Do not assume that another accountβ€”or a signed-out visitorβ€”can see the same posts.

The Actor does not write the cookie string to its Dataset or application logs. The input field is marked secret so Apify encrypts it before storing the run input. Avoid copying it into non-secret fields or external logs.

How much does a run cost?

The run cost is the tier-specific start event plus one tier-specific query-checked event for every search that completes successfully, plus one mention-delivered event for every accepted query/post row. On Free, that is $0.0005 per run, $0.005 per successful search, and $0.0025 per delivered row. Starter, Scale, Business, Platinum, and Diamond receive the discounts shown in the pricing table. Check the Actor's live Pricing tab before starting a run because that surface is the final source of truth.

KazKN Monitoring & Intelligence Suite

KazKN Monitoring and Intelligence Suite β€” social, commerce, and marketplace signals

X Mentions Delta Monitor logo
X Mentions Delta Monitor
πŸ”΅ You are here
New, deduplicated X mentions with stable IDs and visible match evidence in strict mode.
Zalo Member Profile Exporter logo
Zalo Exporter
Export visible groups, members, contacts, profiles, or bounded chat history.
Shopify Apps Spy logo
Shopify Apps Spy
Detect Shopify apps and export product, review, and catalog intelligence.
Vinted Smart Scraper logo
Vinted Smart Scraper
Compare cross-country prices and monitor resale opportunities across markets.
Vestiaire Collective Smart Scraper logo
Vestiaire Collective Scraper
Collect live and sold luxury listings with seller and price intelligence.

πŸ”’ Responsible operation

  • Use an account and data access you control.
  • Keep session cookies out of datasets, logs, screenshots, repositories, and support messages.
  • Prefer a dedicated account, conservative schedules, bounded queries, and non-overlapping runs.
  • Rotate the session immediately if a cookie may have been exposed.
  • Build downstream workflows that tolerate replay and deduplicate on mentionId.

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by X Corp. X search behavior and browser interfaces can change.