Talent Search
TOOLS · EXPERTINI ATS

Talent Search

Search job seekers across the Expertini network in your own country — read a profile and its CV without leaving the ATS, and only ever see people who chose to be listed.

4 min read · Updated July 2026 · Expertini Editorial

Most sourcing starts with the people who already applied to you. Talent Search starts with everyone else: the job seekers holding a profile on the Expertini country job site for your market, searchable from inside your ATS the same way your own talent pool is. No export, no scraped list, no separate login — the results open into a profile and a CV in the same window you were already working in.

Two rules define this tool, and they are enforced on every single read rather than at the search box: you see your organisation's own country and no other, and you see only the job seekers who switched their profile to visible. Neither is a preference you can turn off, and neither depends on the query — a profile that is not listed cannot be found, opened, or downloaded, no matter how the search is phrased.

1country per organisation — your own, and not selectable
100%opt-in — an unlisted profile is unfindable, not just hidden
3separate checks per profile: list, profile, CV
0public links to a candidate CV — every file is streamed by the ATS

01What it does

Search by keyword across a job seeker's name, headline, category, education, languages, stated experience and their own profile summary — and optionally narrow by city, state, or locality. An empty search is valid and lists everyone visible, because a sourcing tool should be a browsable directory first and a search box second; being shown nothing until you guess the right keyword tells you nothing about whether anyone is there.

Every result opens a profile panel inside the ATS, with the CV rendered alongside it. Following someone is one click, and saving the search you just ran turns it into a Candidate Alert that emails you when new people match it.

02One country — your organisation's, taken from your account

The country searched is read from your organisation record, not from the request, so it cannot be widened by editing a URL or a form field. If your organisation is registered in one market, that is the market you can source from. This is a deliberate boundary rather than a technical limit: a candidate who published a profile on their national job site published it to employers hiring in that country, and that is the scope their consent covers.

03Opt-in only, and re-checked every time

Job seekers on the Expertini country sites choose whether their profile is listed for employers. Talent Search only ever returns profiles where that choice is on — and the check is repeated when you open a profile, when the CV is streamed, and when you follow someone, not just when the list is built. Somebody who changes their mind after you found them stops being reachable through this tool immediately; a profile you already followed shows as no longer listed rather than silently continuing to serve their details.

04The CV is served by us, never linked

When you open a CV, the ATS reads the file and streams it to you under your own session. It is never exposed as a public link, and the tool never redirects you to the job site's document folder. That matters because the underlying folder on the country site is not access-controlled — pointing you at it would have imported that exposure into the ATS, where every other document route is scoped to your organisation.

CV views are the one metered part of this tool. Each plan includes a monthly allowance, counted only when a CV is actually opened — searching, browsing profiles, and following cost nothing. The allowance is what stops the network being bulk-harvested, and it is why the search itself is deliberately unmetered.

05Who it's for

Employers in a market where the right person is not currently applying — a specialised role, a small country site, a seasonal push — and agencies who need to show a client real candidates before a posting has had time to attract any. It complements rather than replaces your own pipeline: applicants who came to you are still the warmest source, and CMS scoring still runs on them automatically.

06Plans and what's included

Talent Search, Follow Talent and Candidate Alerts are included from the Growth plan upward, and all three are unlocked in full during the 14-day free trial so you can evaluate them before deciding. Monthly CV views: 10 on the trial, 100 on Growth, 500 on Professional, 2,000 on Business and 10,000 on Enterprise. See pricing for the rest of each plan.

07Support

The Help Center covers what job seekers see and control on their side, which is the question recruiters ask most often about this tool; support@expertini.com reaches the team for anything else.

Engineering notes

Platform architecture & operations

A1Architecture: where it sits in the platform

Talent Search is a first-class module of the Sourcing & Job Ads suite inside the authenticated Expertini ATS workspace. The platform is deliberately server-rendered: every view is prepared by the application server and shipped as complete HTML, with no client-side framework, no third-party CDN scripts, and no build pipeline between the data and the page. What renders is what the server computed — the property that makes the interface auditable.

All persistence runs on a single search-native document store; every query carries the organisation's identifier as a mandatory filter at the lowest query layer. Tenant isolation is therefore structural — a property of how every request is composed — rather than a policy that relies on application code remembering to check.

Availability is governed by the platform's tool registry: this tool is registered from the Growth plan, and access is enforced server-side by the registry gate on every request — never by hiding a button. Plans also carry a monthly distinct-tool quota (3 / 5 / 15 / 30 / 45 across Trial→Business, unlimited on Enterprise), counted at the same chokepoint. The pricing page states both honestly: what is available, and how much of it the month includes.

A2Data model and dependency map

In production the tool reads and writes ats_candidate_follows. Documents are plain, explicitly-mapped fields — mappings are provisioned ahead of first write, so term filters and aggregations behave deterministically instead of depending on inferred types.

Every distinct open is journalled to the tool-activity store — and that journal, not a parallel analytics system, is what the Reports section aggregates. The usage numbers you see are the numbers the platform actually recorded.

Anything that leaves the request path — notification fan-out, webhook delivery, activity journalling, mail — runs in fire-and-forget background threads. A slow external endpoint can never make the interface hang, and a failed side effect is logged rather than silently retried into inconsistency.

A3Operational considerations

Organisation-level settings, destructive actions, and connections are gated to owner and admin roles; recruiters operate the tool on the records they can see. Role changes apply on the next request — enforcement is at the route, not in the menu.

Failures are surfaced, not swallowed: server-side validation returns the exact field and reason, vendor errors are quoted verbatim where integrations are involved, and every write either confirms or reports. Exports regenerate on request rather than being cached — a report you download reflects the store at the moment you asked, not last night's snapshot.

Everything written is yours to take: CSV exports and the Data Export app cover the same stores the product itself reads. The exit is as open as the entrance — by design, not concession.

A4Interaction contract

The interface follows the platform's search-and-select convention: any field that names a real record — a candidate, client, or job — is a type-to-search picker over live data, never a free-typed string, which is what keeps activity trails and deduplication trustworthy. Static choices are filter-as-you-type combos rather than native dropdowns, and state transitions give explicit feedback: server confirmations surface as toasts, validation errors name the exact field, and nothing is shown as done that the server has not confirmed.

The wireframe and flow below document the structural contract of the surface — what panels exist, what order the states occur in, and what happens at every edge — rather than pixels. The layout is composed with native CSS grid and flexbox and adapts from wide desktop to a single column without separate mobile views.

Dependency map

Reads / writesats_candidate_follows
Access gateGrowth plan and above — enforced server-side by the tool registry
Monthly quotadistinct tools per month: Trial 3 / Starter 5 / Growth 15 … unlimited on Enterprise
Usage journalats_tool_activity (per open)
Tenancyevery query filtered by organisation id at the query layer
Side effectsbackground threads — never on the request path

Interface blueprint

Structural schematic of the surface — panels, hierarchy, and interaction affordances. A contract, not a screenshot.
Input panel
type-to-search record picker
run — server-side
Result panel
copyexportjournalled
Fig. 1 — Talent Search: structural interface schematic. Panels and states are the contract; data shown is placeholder.

Interaction flow — states, validations, feedback

Every state below is enforced server-side; the interface reports it, it doesn't decide it.
Open toolregistry gate: plan + monthly quota
Pick recordstype-to-search over live org data
Server computeorg-scoped reads; deterministic logic
Resultrendered server-side; export on demand
Journalactivity store → Reports
Plan below minimum → lock page shows the exact tier ladder, never a dead endMonthly quota reached → upgrade prompt with the count that triggered itValidation failure → the specific field and reason, inlineEmpty search → honest empty state; no fabricated matches
Fig. 2 — interaction flow: navy = states, gold = server-enforced gates, green = confirmed outcomes; tags list the edge cases and their feedback.

Frequently asked questions

Can I search candidates in other countries?
No. The country is read from your organisation record and applies to every search, profile view, CV and alert. It is not a filter you can change, because a job seeker's profile was published to employers hiring in their own market.
Do candidates know they can be found this way?
Yes — being listed is a setting the job seeker turns on in their own profile on the Expertini country site, and it is off unless they choose it. Turning it off removes them from Talent Search immediately, including from lists where an employer had already followed them.
Does viewing a CV cost anything?
Each plan includes a monthly CV-view allowance — 10 on the trial, 100 on Growth, 500 on Professional, 2,000 on Business, 10,000 on Enterprise. Searching, browsing profiles and following people are not metered; only opening a CV counts.
Is this the same as my talent pool?
No. Your talent pool holds candidates who applied to you or whom you imported. Talent Search reaches job seekers on the Expertini country job site who have never applied to you — a separate, opt-in population.
Can I download the whole list?
No. There is no bulk export of network profiles, and the CV allowance is per month per organisation. The tool is built for finding specific people, not for harvesting a market.

At a glance

  • Search by skill, title, education, language or free text — location optional
  • Restricted to your organisation's own country, always
  • Opt-in profiles only, re-checked on every read
  • Profile and CV open inside the ATS — no public links, no second login
  • Monthly CV-view allowance by plan; search and browse are unmetered
  • Included from Growth upward, and fully unlocked during the 14-day trial

See talent search on your own hiring.

Bring a real job description to a 30-minute demo — free trial included.

Book a demo
Expertini AI
Online now
Hi! I'm Expertini's AI Product Expert. Ask me anything about our solutions, get guidance on any of our Hiring Tools, or just tell me what you're trying to do — I'll point you in the right direction. For account-specific issues, email support@expertini.com.