Workflow

Procurement Prospect Discovery Workflow

One-off list builder: Scavio dorks across LinkedIn + Spanish registries → LLM extract → Hunter validate → CSV.

Overview

On-demand procurement (or any role) prospect list builder for non-English markets. Reusable for any country/role by swapping role wording + registry dorks.

Trigger

On-demand (manual or scheduled per project)

Schedule

On-demand

Workflow Steps

1

Define role wording in target language

Spanish: director de compras, jefe de aprovisionamientos.

2

Generate dorks across LinkedIn + registries + news

Per role × per source.

3

Run Scavio per dork

Collect 10-20 organic results per query.

4

LLM extract { name, role, company, linkedin } per result

Filter to true role matches in target language.

5

Dedup across dorks

hash(name + company).

6

Optional: Hunter email validate

Drop accept-all and disposable.

7

Output CSV for outreach tool

name, role, company, linkedin, email, source.

Python Implementation

Python
import requests, os
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}

ROLES_ES = ['director de compras', 'jefe de aprovisionamientos', 'responsable de compras']

def discover(role):
    dorks = [
        f'site:linkedin.com/in "{role}" Spain',
        f'site:axesor.es "{role}"',
        f'site:expansion.com "{role}" 2026',
    ]
    out = []
    for q in dorks:
        r = requests.post('https://api.scavio.dev/api/v1/search', headers=H, json={'query': q}).json()
        out.extend(r.get('organic_results', [])[:10])
    return out

JavaScript Implementation

JavaScript
// Same in TS.

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Frequently Asked Questions

On-demand procurement (or any role) prospect list builder for non-English markets. Reusable for any country/role by swapping role wording + registry dorks.

This workflow uses a on-demand (manual or scheduled per project). On-demand.

This workflow uses the following Scavio platforms: google. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Procurement Prospect Discovery Workflow

One-off list builder: Scavio dorks across LinkedIn + Spanish registries → LLM extract → Hunter validate → CSV.